tutorial para not librerias instalar descargar connected configurar compilar compilador como c++ netbeans mingw

para - No se puede compilar "Hello World" en NetBeans IDE 7.3 con MinGW C++



netbeans c++ descargar (3)

usted descarga mysys form mingw o sourceforge.net después de instalarlo, la ruta es C: / Mysys / 1.0 / bin / make.exe para dar la ruta al compilador make en netbean ide.

Estoy tratando de hacer un simple "¡Hola mundo!" programa en NetBeans IDE 7.3 con MinGW como mi compilador de C ++.

Estoy obteniendo fallas de construcción y no entiendo por qué.

Esta es mi configuración de compilador:

  • Familia: MinGW
  • Directorio base: C: / MinGW
  • C Compilador: C: / MinGW / bin / gcc.exe
  • Compilador C ++: C: / MinGW / bin / g ++. Exe
  • Ensamblador: C: / MinGW / bin / as.exe
  • Comando Make: C: / MinGW / msys / 1.0 / bin / make.exe
  • Comando del depurador: C: / MinGW / bin / gdb.exe

Me he asegurado de que mi entorno PATH dirige a C: / MinGW / bin y C: / MinGW / msys / 1.0 / bin .

Mi código es:

#include <iostream> using namespace std; int main() { cout << "Hello World!" << endl; return 0; }

Después de intentar construir el proyecto, recibo este mensaje del resultado de depuración de NetBeans:

"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf make[1]: Entering directory `/c/NetBeansProjects/HelloWorld'' "/usr/bin/make" -f nbproject/Makefile-Debug.mk dist/Debug/MinGW-Windows/helloworld.exe make[2]: Entering directory `/c/NetBeansProjects/HelloWorld'' mkdir -p build/Debug/MinGW-Windows rm -f build/Debug/MinGW-Windows/main.o.d g++ -c -g -MMD -MP -MF build/Debug/MinGW-Windows/main.o.d -o build/Debug/MinGW-Windows/main.o main.cpp make[2]: g++: Command not found make[2]: *** [build/Debug/MinGW-Windows/main.o] Error 127 make[2]: Leaving directory `/c/NetBeansProjects/HelloWorld'' make[1]: *** [.build-conf] Error 2 make[1]: Leaving directory `/c/NetBeansProjects/HelloWorld'' make: *** [.build-impl] Error 2 BUILD FAILED (exit value 2, total time: 1s)

He buscado varias preguntas y respuestas, pero parece que estoy haciendo todo correctamente.


Haga clic derecho en Mi PC y seleccione propiedades. Haga clic en Configuración avanzada del sistema. Se abrirá el cuadro de diálogo Propiedades del sistema. haga clic en Variables Ambientales. Edite la variable PATH y agregue C: / MinGW / msys / 1.0 / bin


Tu configuración en netbeans debería ser la siguiente

Base Directory: C:/MinGW/bin C Compiler: C:/MinGW/bin/gcc.exe C++ Compiler: C:/MinGW/bin/g++.exe Fortran Compiler: C:/MinGW/bin/gfortran.exe Assembler: C:/MinGW/bin/as.exe Make Command: C:/MinGW/msys/1.0/bin/make.exe Debbuger Command: C:/MinGW/bin/gdb.exe

Añádalos a sus variables de entorno

C:/MinGW/bin and C:/MinGW/msys/1.0/bin

Esto puede suceder si ha configurado las configuraciones en netbeans antes / durante el tiempo de instalación de MINGW y configurando el entorno PATH.

Simplemente reinicie netbeans