为 32 位和 64 位版本创建文件

发布于 2024-10-01 13:18:59 字数 86 浏览 1 评论 0原文

我需要创建一个 make 文件,该文件将允许用户选择创建 64 位或 32 位构建。我是新手,不确定最好的方法是什么。有人有什么建议吗?

谢谢

I need to create a make file which will allow the user to choose to create either a 64 or 32 bit build. I'm new to make and am not sure what the best way to do this would be. Does anyone have any suggestions?

Thanks

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

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

发布评论

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

评论(2

梦里南柯 2024-10-08 13:18:59

看看这篇文章。简而言之,每个体系结构都有单独的输出目录,并展示如何从每个体系结构中查找源代码。

Have a look at this article. The long and short of it is to have separate output directories for each architecture, and show make how to find the source from each of them.

世态炎凉 2024-10-08 13:18:59

此答案假设您使用 Linux/UNIX。

LBITS := $(shell getconf LONG_BIT)
ifeq ($(LBITS),64)
   # do 64 bit some stuff
else
   # do 32 bit stuff here
endif

This answer is assumed that you using either Linux/UNIX.

LBITS := $(shell getconf LONG_BIT)
ifeq ($(LBITS),64)
   # do 64 bit some stuff
else
   # do 32 bit stuff here
endif

.

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