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