xcrun clang --sysroot找不到stdio.h

时间:2013-02-15 20:43:30

标签: xcode clang xcrun

使用Xcode 4.6,在Mac OS X 10.8.2下,为了编译hello.c,我发出了xcrun gcc cannot find header files中建议的xcrun命令,但仍然收到无法找到头文件stdio.h的错误。

 $ xcrun clang --sysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk/ -o hello hello.c
 hello.c:2:10: fatal error: 'stdio.h' file not found
 #include <stdio.h>
     ^
 1 error generated.
 $ cat hello.c
 /* C program, Hello World */
 #include <stdio.h>
 int main()
 {
  printf("Hello World \n");
 }

2 个答案:

答案 0 :(得分:2)

它应该适用于: xcrun clang -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk/

答案 1 :(得分:0)

我为该项目更改了Build Settings,因为未指定Base SDK。一旦我将其更改为OS X 10.7(或者您正在使用的任何内容应该没问题),我就能够成功编译所有内容而无需更改其他构建配置。