CYGWIN or MiniGW
I'm trying to set up NetBeans IDE on my Vista Home, and have a choice between those two compilers. Which one would you choose? I also want to have Code::Blocks.
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
A full install of code::blocks would have installed a version of MinGW.
Salem
Posting Sage
11,531 posts since Dec 2005
Reputation Points: 5,862
Solved Threads: 953
I had already installed cygwin, but based on your recommendations I deleted it and installed Code::Blocks with MiniGW. Code::Blocks appears to be working now. Then I tried to configure NetBeans to work with the MiniGW that's in Code::Blocks directory. The problem now is that there is no make.exe in that directory. So being the smart ass that I am I downloaded GNU Make for Windows, configured NetBeans to use that program. Apparently that version of make doesn't like the makefiles that NetBeans generates because it produced some sort of error.
make: *** [.validate-impl] Error 255
Anyone have a solution to this problem? Or know why a make.exe program was not installed with MiniGW?
Ancient Dragon
Retired & Loving It
30,049 posts since Aug 2005
Reputation Points: 5,662
Solved Threads: 2,343
There is a make.exe in the msys directory which is installed alongside the mingw directory.
That's where I found a make.exe anyway, though I'm not clear on what the installation steps were to get it.
Salem
Posting Sage
11,531 posts since Dec 2005
Reputation Points: 5,862
Solved Threads: 953
There are differences in the make between POSIX and Windows, as well as some problems with the MSYS make (which is POSIX, AFAIK).
You should be using your ~MinGW\bin\mingw32-make.exe program when compiling in the non-POSIX (Windows native) environment, and the ~MSYS\...\bin\make.exe program when compiling under the MSYS POSIX environment.
Hope this helps.
Duoas
Postaholic
2,043 posts since Oct 2007
Reputation Points: 1,140
Solved Threads: 229