gcc 编译标志

发布于 2024-11-03 10:56:26 字数 177 浏览 0 评论 0原文

谁能解释一下为什么我们在 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 技术交流群。

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

发布评论

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

评论(1

久而酒知 2024-11-10 10:56:26

-m 后面总是跟着一个machine-option,它通常与机器相关。常见的示例是 -m32-m64,用于在支持这两种架构的架构上选择 32 位和 64 位构建。

听起来你的某个地方有一个空的或未初始化的 makefile 变量。

-m is always followed by a machine-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.

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