g++ -c flag がわかりません。定義に基づく: ソース ファイルをコンパイルまたはアセンブルしますが、リンクは行いません。リンク段階は単に完了していません。最終的な出力は、各ソース ファイルのオブジェクト ファイルの形式です。次のビルドプロセスでエラーが発生する原因を理解するために助けが必要です。ありがとう
サンプルの helloworld プログラムを Eclipse でコンパイルしようとしています。
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
-c なし。日食は私にエラーを与えます:
make all
Building file: ../app.cpp
Invoking: GCC C++ Compiler
g++ -O0 -g3 -Wall -fmessage-length=0 -fPIC -MMD -MP -MF"app.d" -MT"app.d" -o "app.o" "../app.cpp"
Finished building: ../app.cpp
Building target: app.so
Invoking: GCC C++ Linker
g++ -shared -o "app.so" ./app.o
./app.o: In function `_fini':
(.fini+0x0): multiple definition of `_fini'
/usr/lib/gcc/x86_64-redhat-linux/4.6.3/../../../../lib64/crti.o:(.fini+0x0): first defined here
./app.o: In function `_init':
(.init+0x0): multiple definition of `_init'
/usr/lib/gcc/x86_64-redhat-linux/4.6.3/../../../../lib64/crti.o:(.init+0x0): first defined here
/usr/lib/gcc/x86_64-redhat-linux/4.6.3/crtendS.o:(.dtors+0x0): multiple definition of `__DTOR_END__'
./app.o:(.dtors+0x8): first defined here
/usr/bin/ld: warning: Cannot create .eh_frame_hdr section, --eh-frame-hdr ignored.
/usr/bin/ld: error in ./app.o(.eh_frame); no .eh_frame_hdr table will be created.
collect2: ld returned 1 exit status
make: *** [app.so] Error 1
11:25:49 Build Finished (took 463ms)
-c を使用すると、正常にビルドされます。
11:33:16 **** Incremental Build of configuration Debug for project app ****
make all
Building file: ../app.cpp
Invoking: GCC C++ Compiler
g++ -O0 -g3 -Wall -c -fmessage-length=0 -fPIC -MMD -MP -MF"app.d" -MT"app.d" -o "app.o" "../app.cpp"
Finished building: ../app.cpp
Building target: app.so
Invoking: GCC C++ Linker
g++ -shared -o "app.so" ./app.o
Finished building target: app.so
11:33:16 ビルド完了 (311ms かかりました)
実行可能ファイルを生成するための新しい修正
13:32:44 **** Incremental Build of configuration Debug for project app ****
make all
Building file: ../app.cpp
Invoking: GCC C++ Compiler
g++ -O0 -g3 -Wall -c -fmessage-length=0 -fPIC -MMD -MP -MF"app.d" -MT"app.d" -o "app.o" "../app.cpp"
Finished building: ../app.cpp
Building target: app
Invoking: GCC C++ Linker
g++ -shared -o "app" ./app.o
Finished building target: app