gpt4 book ai didi

c - gcc multiple -o 选项如何工作?

转载 作者:太空宇宙 更新时间:2023-11-04 00:48:27 25 4
gpt4 key购买 nike

我试图了解 gcc 的 -o 选项是如何工作的,我知道它用于指定输出文件名,但是当我这样写时会发生什么:

gcc main.c -o test0 -o test1

gcc main.c -o test0 -o test1 -o test2

?
我注意到:只有最后一个 -o <filename>被考虑在内。所以我的问题是:为什么我可以指定多个 -o 选项?以及它们如何发挥作用?

最佳答案

这好像不是documented :

-o file Place output in file file. This applies to whatever sort of output is being produced, whether it be an executable file, an object file, an assembler file or preprocessed C code.

If -o is not specified, the default is to put an executable file in a.out, the object file for source.suffix in source.o, its assembler file in source.s, a precompiled header file in source.suffix.gch, and all preprocessed C source on standard output.

玩弄它,它似乎被视为一个“全局”选项,只允许指定一个输出文件,其中只有最后一个给出的 -o 选项生效(如问题)。

$ gcc -c foo.c -o fooX.o bar.c -o barX.o
gcc: fatal error: cannot specify -o with -c, -S or -E with multiple files
compilation terminated.

$ gcc -c foo.c -o fooX.o -o fooY.o # produces fooY.o only

如果前一个选项发生冲突,则覆盖以前的选项对于许多命令行工具来说很常见,这有时在编写脚本时很有用。作为一个(可能不是很好的)例子,考虑一下

alias gcc='gcc -o my_default' # a.out is a bad default name

在你的.bashrc;你仍然可以输入

gcc -o foo foo.c

没有得到错误。 (这个例子很糟糕,因为 gcc -c foo.c bar.c 现在是无效的,但希望它能说明这样的事情可能有什么帮助。)

关于c - gcc multiple -o 选项如何工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28137773/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com