gpt4 book ai didi

c - -Xassembler 和 -Xpreprocessor 示例

转载 作者:行者123 更新时间:2023-11-30 14:45:03 26 4
gpt4 key购买 nike

我最近开始接触汇编和 C 代码,并发现了 gcc 选项 -Xassembler -Xpreprocessor。我在网上搜索了简单的示例以及这些 gcc 选项所采用的值,但找不到。

感谢帮助。
谢谢

最佳答案

-Xassembler :它将选项作为编译选项传递给汇编器,例如有关体系结构的特定选项(很可能 GCC 无法识别)。它类似于-Wa(但是传递参数的方式发生了变化)。为了完整起见,我习惯于看到 -Wa 而不是 -Xassembler,我想向后兼容性解释了为什么有两个类似的选项。

-Xassembler(ARM 架构)的示例:-Xassembler -mthumb 用于针对 Thumb 架构进行汇编(或 -Wa,-mthumb)。

-Xpreprocessor :它将一个选项传递给预处理器,和以前一样,传递 GCC 无法识别的选项很有用。它类似于-Wp(并且传递参数的方式发生了变化)。

-Xpreprocessor 示例:-Xpreprocessor -M(或 -Wp,-M),以便

output a rule suitable for make describing the dependencies of the main source file

关于c - -Xassembler 和 -Xpreprocessor 示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53276697/

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