gcc中有64位的aa定义吗

发布于 2024-11-27 19:49:55 字数 366 浏览 2 评论 0原文

可能的重复:
检测 C 中的 64 位编译

我希望我的程序能够在 32 位和 64 位上运行Linux操作系统。因此,在我的 C 代码中,我希望编译器知道何时针对 32 位和 64 位体系结构进行编译。所以,我需要类似的东西

#ifdef X64
...
#else
...
#endif

gcc中有这样的定义吗?

Possible Duplicate:
Detecting 64bit compile in C

I want my program to run on both 32 bit and 64 bit Linux OS. So In my C code, I want the compiler to know when it is compiling for a 32 bit and 64 bit architecture. So, I need something like that

#ifdef X64
...
#else
...
#endif

Is there any such define in gcc?

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

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

发布评论

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

评论(3

白首有我共你 2024-12-04 19:49:55

我知道这些:

__i386__    
__x86_64__  

我不知道它们有多可靠。

最好的选择是在编译 32 位并检查代码中的 MY_32BIT 时,将 -DMY_32BIT 添加到 Makefile 的编译行。这样你就可以确定了。

I know of these:

__i386__    
__x86_64__  

I don't know how reliable they are.

The best option would be adding -DMY_32BIT to the Makefile's compile line when compiling for 32 bits and checking for MY_32BIT on your code. That way you can be sure.

盛装女皇 2024-12-04 19:49:55

limit.h 中有 __WORDSIZE:

#include <limits.h>
#if ( __WORDSIZE == 64 )
#define BUILD_64   1
#endif

这是相对可移植的(由于 POSIX),但在模糊环境或 Windows 上可能会失败。

There is __WORDSIZE in limits.h:

#include <limits.h>
#if ( __WORDSIZE == 64 )
#define BUILD_64   1
#endif

This is relatively portable (due to POSIX), but may fail in obscure environments or on windows.

爱给你人给你 2024-12-04 19:49:55

请查看此处

#ifdef __x86_64
...
#endif

Look here:

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