gpt4 book ai didi

与交叉编译器的静态链接

转载 作者:行者123 更新时间:2023-12-04 04:53:05 24 4
gpt4 key购买 nike

我的 test.c 程序使用了 printf 函数。我想静态链接我需要的库。我使用 arm-linux-gnueabi-gcc 交叉编译器。

当我这样编译我的代码时

arm-linux-gnueabi-gcc test.c -o 测试

它通过了,但我认为他仍然通过查看测试的分解来使用动态链接。

那么,为了静态链接 libc.a 库,我应该添加什么选项?

最佳答案

尝试

arm-linux-gnueabi-gcc test.c -o test -Xlinker -static /path/to/libc.a

这对我有用。此外,它可能会提示您没有静态 libgcc_s。然后试试这个:

arm-linux-gnueabi-gcc test.c -o test -Xlinker -static /path/to/libc.a -static-libgcc

希望这对您有所帮助!

关于与交叉编译器的静态链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17136394/

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