我在ubuntu上使用netbeans IDE for c ++,每当我运行程序时,我收到BUILD_FAIL错误
"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory `/home/rupesh/NetBeansProjects/Cpp1'
"/usr/bin/make" -f nbproject/Makefile-Debug.mk dist/Debug/GNU-Linux-x86/cpp1
make[2]: Entering directory `/home/rupesh/NetBeansProjects/Cpp1'
mkdir -p dist/Debug/GNU-Linux-x86
g++-o dist/Debug/GNU-Linux-x86/cpp1 build/Debug/GNU-Linux-x86/main.o build/Debug/GNU- Linux-x86/1.o
build/Debug/GNU-Linux-x86/1.o: In function `main':
/home/rupesh/NetBeansProjects/Cpp1/1.cpp:4: multiple definition of `main'
build/Debug/GNU-Linux-x86/main.o:/home/rupesh/NetBeansProjects/Cpp1/main.cpp:15: first defined here
collect2: ld returned 1 exit status
make[2]: *** [dist/Debug/GNU-Linux-x86/cpp1] Error 1
make[2]: Leaving directory `/home/rupesh/NetBeansProjects/Cpp1'
make[1]: *** [.build-conf] Error 2
make[1]: Leaving directory `/home/rupesh/NetBeansProjects/Cpp1'
make: *** [.build-impl] Error 2
BUILD FAILED(退出值2,总时间:190ms)
我正在运行一个打印hello world的简单程序。
答案 0 :(得分:0)
从编译器吐出的内容来看,似乎有两个文件指定main()
被构建为一个项目。
/ home / rupesh / NetBeansProjects / Cpp1 / 1.cpp:4:多个定义 `主'
建立/调试/ GNU Linux的86 / main.o:/家庭/ rupesh /的NetBeansProjects / CPP1 /的 main.cpp中:15 强>:
首先在这里定义collect2:ld返回1退出状态make [2]: *
[dist / Debug / GNU-Linux-x86 / cpp1]错误1
检查您的文件夹以确保您没有其他文件,编译器正在尝试使用main.cpp构建,在这种情况下查找1.cpp