M1 MacBook Pro 和 cmake 的编译错误

alw*_*gie 7 c c++ macos xcode cmake

我刚刚拿到了新的 M1 MacBook Pro,正在尝试编译大学工作所需的代码库。以下是我已采取的步骤:

  1. 我使用 Rosetta 将终端设置为始终打开。
  2. 安装的自制软件using /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  3. 使用安装的cmakebrew install cmake
  4. 运行cmake <path to source>(这很好用)
  5. 运行make(失败)

这是我得到的错误:

/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/stdlib.h:97:15: fatal error: 
      'stdlib.h' file not found
#include_next <stdlib.h>
Run Code Online (Sandbox Code Playgroud)

我尝试卸载并重新安装 Xcode 和 CommandLineTools,但无济于事。

使用 cmake gui 应用程序时,我收到不同的错误。我将其设置为使用 CommandLineTools/SDKs/MacOsX11.0.sdk。

使用此 cmake gui 设置生成和配置构建文件后运行时make,出现以下错误:

    -- The C compiler identification is AppleClang 12.0.0.12000032
-- The CXX compiler identification is AppleClang 12.0.0.12000032
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - failed
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
-- Check for working C compiler: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc - broken
CMake Error at /Applications/CMake.app/Contents/share/cmake-3.18/Modules/CMakeTestCCompiler.cmake:66 (message):
  The C compiler

    "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc"

  is not able to compile a simple test program.

  It fails with the following output:

    Change Dir: /Users/freyamurphy/nori/build/ext_build/src/tbb_p-build/CMakeFiles/CMakeTmp
Run Code Online (Sandbox Code Playgroud)

如果我运行命令/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc test.c(简单的 hello world 程序),我会收到此错误:

test.c:1:10: fatal error: 'stdio.h' file not found
#include "stdio.h"
Run Code Online (Sandbox Code Playgroud)

但使用cc test.c一切效果都很好。(这运行 usr/bin/cc)。

在我看来,Xcode 可能存在问题。有人遇到过类似的问题或者可以给我一些建议吗?我们将不胜感激。

S.M*_*.M. 10

xcode安装后重新打开终端了吗?需要设置环境变量SDKROOT

关闭并再次运行终端或在终端中打开新选项卡。

或者在当前终端运行以下命令

export SDKROOT=$(xcrun --sdk macosx --show-sdk-path)
Run Code Online (Sandbox Code Playgroud)

还要确保选择正确的 xcode 工具链

# list available xcode toolchains
xcode-select -p

# select one of listed above
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer
Run Code Online (Sandbox Code Playgroud)