2

c++ の ubuntu で 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)

hello world を印刷する簡単なプログラムを実行しています。

4

1 に答える 1

0

コンパイラーが吐き出しているものから、main()1つのプロジェクトとしてビルドされていることを指定する2つのファイルがあるようです。

/ home / rupesh / NetBeansProjects / Cpp1 / 1.cpp:4:「メイン」の複数の定義

build / Debug / 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 に答える