Factsheet
Can anyone help me run eclipse properly on my mac please?
java - The application “Eclipse” can’t be opened. (macOS Monterey) - Stack Overflow
java - How do I download Eclipse on my Mac? - Stack Overflow
Eclipse on Mac
I'm not sure because i've never used eclipse of C development. But what eclipse probably needs is the command-line tools, if you've never installed them (or haven't since updating OS) i would start there. The tools pkg are substantially smaller than Xcode pkg.
You can check to see if they are already installed by running "xcode-select --install" in your terminal. If its already installed it will tell you that its already installed, otherwise, it will ask you to download the tools.
More on reddit.comVideos
I have everything installed, eclipse and avr-gcc, xcode, literally everything and the paths on eclipse are supposed to be detected automatically, but whenever I open eclipse it gives me an error that avr-gcc cannot run due to its path not being available, and idk what to do about it by any means
Faced the same issue each time I'm restarting the Macbook pro M1, and a random Reddit thread provided me with a way to fix it. Open a terminal and run,
sudo codesign --force --deep --sign - /Applications/Eclipse.app
Not sure why this codesigning fixes the problem. But seems to be a bug in the eclipse itself. Hope this helps someone.
I faced the same issue each time I restarted the Macbook pro M1 Max,(Note Eclipse was downloaded via Homebrew) and tried below but it turned out to be "/Applications/Eclipse.app: Is a directory"
sudo codesign --force --deep --sign - /Applications/Eclipse.app
the issue was the file structure Eclipse saved was different (you can check the file structure by cd to the Eclipse through the terminal) as per the file structure, the path was
sudo codesign --force --deep --sign - /Applications/Eclipse\ JEE.app
I hope this helps someone.