gcc 编译标志
谁能解释一下为什么我们在 gcc 中使用 -m 标志? 我运行 man gcc 命令结果很不清楚,任何人都可以解释一下这个标志在编译中的作用吗? 如何使用 -m 标记其正确的语法? 我需要它,因为我正在通过 make 命令运行自动生成的 makefile,但它显示以下错误: cc1:错误:无法识别的命令行选项“-m” 谁能解释那是什么?
can any body explain me why we use -m flag in gcc ?
I run man gcc command result are quite unclear can any body explain me role of this flag in compilation?
how to use -m flag its proper syntax?
i need it because i'm running a auto generated makefile through make command but it shows an error which is following:
cc1: error: unrecognized command line option "-m"
can anybody explain what is that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
-m
后面总是跟着一个machine-option
,它通常与机器相关。常见的示例是-m32
和-m64
,用于在支持这两种架构的架构上选择 32 位和 64 位构建。听起来你的某个地方有一个空的或未初始化的 makefile 变量。
-m
is always followed by amachine-option
, which will typically be machine-dependent. Common examples are-m32
and-m64
for selecting 32 bit and 64 bit builds on architectures which support both.It sounds like you have an empty or uninitialised makefile variable somewhere.