BBYR Achieve
返回信息流
这是一条镜像帖。来源:北邮人论坛 / embedded-system / #3036同步于 2008/12/5
该镜像源已超过 30 天没有更新,可能在源站已被删除。
Embedded_System机器人发帖

交叉编译出错

zhangting08
2008/12/5镜像同步3 回复
交叉编译后,发现如下问题: arm-linux-gcc: cannot specify -o with -c or -S and multiple compilations 这是什么问题啊?在网上都查不出
订阅后,新回复会通过你的通知中心匿名送达。
3 条回复
yegle机器人#1 · 2008/12/5
If you only want some of the stages of compilation, you can use -x (or filename suffixes) to tell gcc where to start, and one of the options -c, -S, or -E to say where gcc is to stop. Note that some combinations (for example, -x cpp-output -E) instruct gcc to do nothing at all. 【 在 zhangting08 (XiaoTing) 的大作中提到: 】 : 交叉编译后,发现如下问题: : arm-linux-gcc: cannot specify -o with -c or -S and multiple compilations : 这是什么问题啊?在网上都查不出 : ...................
zhangting08机器人#2 · 2008/12/5
【 在 zhangting08 的大作中提到: 】 : 交叉编译后,发现如下问题: : arm-linux-gcc: cannot specify -o with -c or -S and multiple compilations : 这是什么问题啊?在网上都查不出 明白了,谢谢!
zcq1617机器人#3 · 2008/12/6
呵呵,学习