gpt4 book ai didi

c - gcc 无效的命令行选项

转载 作者:行者123 更新时间:2023-11-30 17:03:31 25 4
gpt4 key购买 nike

在 gcc 中使用此 makefile 进行编译时,我收到错误

cannot specify -o with -c, -S or -E with multiple files"

现在我猜想这与尝试两次编译同一个文件有关,但我不知道如何。

assembler : main.o assembler.o utils.o
gcc -g -ansi -Wall -pedantic -lm main.o assembler.o utils.o -o assembler
main.o : main.c assembler.h utils.h
gcc -c -ansi -Wall -pedantic -lm main.c assembler.h utils.h -o main.o
assembler.o : assembler.c
gcc -c -ansi -Wall -pedantic -lm assembler.c -o assembler.o
utils.o : utils.c structs.h
gcc -c -ansi -Wall -pedantic -lm utils.c structs.h -o utils.o

文件包含如下:

structs.h is included in utils.c,
utils.c is included in utils.h,
utils.h is included in assembler.c,
assembler.c is included in assembler.h,
assembler.h is included in main.c.

(:不知道为什么,它让我在代码形成中这样做......

最佳答案

您可能需要这个 makefile(只需从 gcc 命令中删除 .h 文件):

assembler : main.o assembler.o utils.o
gcc -g -ansi -Wall -pedantic -lm main.o assembler.o utils.o -o assembler

main.o : main.c assembler.h utils.h
gcc -c -ansi -Wall -pedantic main.c -o main.o

assembler.o : assembler.c
gcc -c -ansi -Wall -pedantic assembler.c -o assembler.o

utils.o : utils.c structs.h
gcc -c -ansi -Wall -pedantic utils.c -o utils.o

关于c - gcc 无效的命令行选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36135009/

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