Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我直观地尝试运行这样的命令时
cc -c source.c header.h -o a_name_different_than_source.o
抛出以下错误
cc: 不能用 -c 指定 -o,不能用 -S 或 -E 指定多个文件
不要header.h在命令行中输入:
header.h
cc -c source.c -o a_name_different_than_source.o
将工作。
.c 文件不需要您在命令行中提及标头,GCC 会处理这些。
一个简单的gcc inputFilename -o outfileName就足够了。
gcc inputFilename -o outfileName