GCC编译器优化,无法与主要可执行文件链接' _'对于架构x86_64

时间:2017-09-07 21:51:11

标签: c gcc

*Antonio10ms$ gcc pi.c -o1 pi
ld: can't link with a main executable file 'pi' for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我需要帮助,请对我的.cpp进行优化

1 个答案:

答案 0 :(得分:3)

我认为你将优化参数与输出/目标参数混淆。

我认为你想要的是

gcc pi.c -o1 -o pi

,其中 “-o1”表示“优化级别1” 和 “-o pi”表示“输出到名为pi的可执行文件”