2

我在 ubuntu for c++ 上使用 netbeans IDE,每当我运行程序时,我都会收到 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)

我正在运行一个简单的程序来打印你好世界。

4

1 回答 1

0

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

/home/rupesh/NetBeansProjects/Cpp1/ 1.cpp:4: 'main' 的多重定义

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

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

[dist/Debug/GNU-Linux-x86/cpp1] 错误 1

检查您的文件夹以确保您没有编译器尝试使用 main.cpp 构建的其他文件,在这种情况下查找1.cpp

于 2012-12-24T18:14:39.007 回答