gpt4 book ai didi

c - C文件和S文件一起编译时出错

转载 作者:行者123 更新时间:2023-11-30 20:34:57 25 4
gpt4 key购买 nike

我有这个错误:

/usr/lib/gcc/arm-linux-gnueabihf/4.9/../../../arm-linux-gnueabihf/crt1.o: In function `_start':
/build/glibc-mqlSLF/glibc-2.19/csu/../ports/sysdeps/arm/start.S:119: undefined reference to `main'

当我尝试执行我的 makefile 时:

CC=gcc
CFLAGS=-I.
DEBUGFLAGS=-D NDEBUG -O3
RM=rm -f
default: all

all: fib.o bigint.o bigintadd.o
$(CC) $(DEBUGFLAGS) -o fib fib.o bigint.o bigintadd.o

fib.o: fib.c bigint.h
$(CC) $(DEBUGFLAGS) -c fib.c -o fib.o $(CFLAGS)

bigint.o: bigint.c bigint.h bigintprivate.h
$(CC) $(DEBUGFLAGS) -c bigint.c -o bigint.o $(CFLAGS)

bigintadd.o: bigintadd.s bigint.h bigintprivate.h
as -o bigintadd.o bigintadd.s $(CFLAGS)
$(CC) $(DEBUGFLAGS) -s bigintadd.s -o bigintadd.o $(CFLAGS)



clean:
$(RM) fib fib.o bigint.o bigintadd.o

我的 .s 文件中的“主”分支名为 BigInt_add,因为 .c 文件调用此函数。我尝试将其设为 _start 或 main,但编译器提示找不到 BigInt_add 分支。

有什么建议为什么会发生这种情况吗?

最佳答案

问题是我尝试通过以下行来编译 .s 文件:

$(CC) $(DEBUGFLAGS) -s bigintadd.s -o bigintadd.o $(CFLAGS)

当我删除它时,问题就解决了。

关于c - C文件和S文件一起编译时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40793414/

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