arm-elf-strip的参数o不能用怎么办?

发布于 2022-09-23 14:48:25 字数 2732 浏览 6 评论 0

arm-elf-strip --strip-unneeded -o obj/armv4-le-elf/t.o obj/armv4-le-elf/hal.o
arm-elf-strip: invalid option -- o
Usage: arm-elf-strip <switches> in-file(s)
The switches are:
  -I --input-target <bfdname>      Assume input file is in format <bfdname>
  -O --output-target <bfdname>     Create an output file in format <bfdname>
  -F --target <bfdname>            Set both input and output format to <bfdname>
  -p --preserve-dates              Copy modified/access timestamps to the output
  -R --remove-section <name>       Remove section <name> from the output
  -s --strip-all                   Remove all symbol and relocation information
  -g -S --strip-debug              Remove all debugging symbols
     --strip-unneeded              Remove all symbols not needed by relocations
  -N --strip-symbol <name>         Do not copy symbol <name>
  -K --keep-symbol <name>          Only copy symbol <name>
  -x --discard-all                 Remove all non-global symbols
  -X --discard-locals              Remove any compiler-generated symbols
  -v --verbose                     List all object files modified
  -V --version                     Display this program's version number
  -h --help                        Display this output
  -o <file>                        Place stripped output into <file>
arm-elf-strip: supported targets: elf32-littlearm elf32-bigarm elf32-little elf32-big srec symbolsrec tekhex binary ihex
make[3]: *** [obj/armv4-le-elf/hal.mangle] Error 1

我将makefile中的"-o"删除掉,又报错说“没有文件obj/armv4-le-elf/t.o”,到底该怎样解决这个问题啊?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

惟欲睡 2022-09-30 14:48:25

你把一个o文件strip了干嘛呢....

水波映月 2022-09-30 14:48:25

先声明我没用过这个东西,下面内容是我的猜测,lz可以试试看。
如果命令的参数没问题,试试看把makefile的那一行改成下面的样子。
arm-elf-strip --strip-unneeded -o obj/armv4-le-elf/t.o
arm-elf-strip --strip-unneeded -o obj/armv4-le-elf/hal.o

骄傲 2022-09-30 14:48:25

我也没用过。

以前都是strip一个可执行文件。

冬天的雪花 2022-09-30 14:48:25

用法没问题,是不是工具链有问题?

用objcopy试试
arm-elf-objcopy -R .debug_info obj/armv4-le-elf/hal.o obj/armv4-le-elf/t.o

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文