得到BUILD_FAIL错误



我在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

构建失败(退出值2,总时间:190ms)

我正在运行一个简单的程序来打印hello world

从编译器吐出的内容来看,似乎您有两个文件指定正在构建的main()作为一个项目。

/home/rupesh/NetBeansProjects/Cpp1/1.cpp:4:多重定义"主要"

构建/调试/GNU-Linux-x86/main.o:/home/rupesh NetBeansProjects Cpp1/ main.cpp: 15 :

第一个定义在这里collect2: ld返回1退出状态make[2]: *

[dist/Debug/GNU-Linux-x86/cpp1] Error 1

检查您的文件夹,以确保没有编译器试图用main.cpp构建的其他文件,在本例中查找1.cpp

相关内容

  • 没有找到相关文章

最新更新