How to properly configure netbeans 6.7 and c ++ on windows?

I installed and configured NetBeans 6.7 for C ++ in accordance with the official guide: http://www.netbeans.org/community/releases/67/cpp-setup-instructions.html#mingw

The configuration window is as follows: netbeans config

Unfortunately, the following line is displayed with the "compile" command:

/ usr / bin / make -f nbproject / Makefile-Debug.mk SUBPROJECTS = .build-conf BUILD SUCCESSFUL (total time: 642ms)

Since I am in windows and there is no / usr / bin / make, no executable has been compiled :( How to configure NetBeans to use make from it config, not from / usr / bin?

Update

The problem is only in the mingw / msys program chain. It works fine with cygwin (the same message / usr / bin / make is displayed, but the IS executable is created). So the question can be changed to: Can Netbeans 6.7 work with mingw on Windows, or am I limited to cygwin?

+3
source share
2 answers

I had problems working with Netbeans 6.7.1 / C ++ / MinGW. I do not know if this will help, but I thought that I would describe my experience anyway.

I had successful builds, but Netbeans was unable to run my executable. I was able to verify that the executable was created, and I could run it from an external command line. I also could not open properties in my project.

, .

, , , Windows. , , Netbeans, . , .netbeans c:/Documents and Settings.

Netbeans, . , - . //++ , (c:/MinGW/bin c:/msys/1.0/bin) .

msys , MinGW. , bin , .

, , ++, , Windows Linux. , - .

+4

" " , Windows?

netbeans linux, windows, , " ".

? , path .

, /. 16 ( 14 ) - ?

, : , . .exe?

dist/<Configuration>/<ToolChain>/

+1

Source: https://habr.com/ru/post/1713579/


All Articles