gpt4 book ai didi

linux - 检查我使用的是 32 位还是 64 位 Linux 的最佳方法是什么?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:55:16 25 4
gpt4 key购买 nike

如果我有 32 位或 64 位 Linux,我必须检查 CMake 脚本才能知道如何构建 C++ 程序。哪个命令是最佳选择:

  • getconf LONG_BIT
  • uname -m

最佳答案

使用 CMake 的一种可能方法是检查 CMAKE_SIZEOF_VOID_P变量:

if (CMAKE_SIZEOF_VOID_P EQUAL 8)
message (STATUS "Compiling for 64-bit")
endif()

关于linux - 检查我使用的是 32 位还是 64 位 Linux 的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20630257/

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