0

GCC の最新バージョンをインストールしたため、出力ファイルを変更したい場合に C ファイルをコンパイルできなくなったようです。file の例を見てみましょうhello.c:

#include <stdlib.h>
#include <stdio.h>

int main()
{
     printf("hello\n");
}

私が行った場合 :

gcc hello.c

それは正常に動作し、a.out出力があります。しかし、出力の名前を変更したい場合は、基本的に次のようにする必要があります。

gcc -o hello.c hello

私は正しいですか?

もしそうなら、私はこのエラーを受け取ります:

gcc: error: hello: No such file or directory
gcc: fatal error: no input files
compilation terminated

別の例では、完全に WTF になります。

gcc -o Simplexe.c Simplexe
Simplexe: In function `_fini':
(.fini+0x0): multiple definition of `_fini'
/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/crti.o:(.fini+0x0): first defined here
Simplexe: In function `__data_start':
(.data+0x0): multiple definition of `__data_start'
/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/crt1.o:(.data+0x0): first defined here
Simplexe: In function `__data_start':
(.data+0x8): multiple definition of `__dso_handle'
/usr/lib/gcc/x86_64-linux-gnu/4.6/crtbegin.o:(.data+0x0): first defined here
Simplexe:(.rodata+0x0): multiple definition of `_IO_stdin_used'
/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/crt1.o:(.rodata.cst4+0x0): first defined here
Simplexe: In function `_start':
(.text+0x0): multiple definition of `_start'
/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/crt1.o:(.text+0x0): first defined here
Simplexe: In function `_init':
(.init+0x0): multiple definition of `_init'
/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/crti.o:(.init+0x0): first defined here
/usr/lib/gcc/x86_64-linux-gnu/4.6/crtend.o:(.dtors+0x0): multiple definition of `__DTOR_END__'
Simplexe:(.dtors+0x8): first defined here
/usr/bin/ld: error in Simplexe(.eh_frame); no .eh_frame_hdr table will be created.

そのようなものを見たことがなく、ソース ファイルが削除されました。私は一度捕まりました、もう二度とありません。

4

2 に答える 2

4

変化する

gcc -o hello.c hello

gcc -o hello hello.c

-oソースではなく、ターゲットが続きます。

Simplexeターゲットが存在し、gcc がこれを "target" に再度リンクしようとすると、2 番目のケースが発生する可能性がありますが、それはSimplexe.c単なる推測です。

于 2012-11-18T20:19:55.740 に答える
1

-oあなたの場合はhello.cである出力ファイルを指定したため、存在しないファイルhelloをコンパイルしようとしています。正しいコマンドは次のとおりです。

gcc hello.c -o こんにちは

于 2012-11-18T20:22:30.570 に答える