我正在用clang编译我的项目,但出现了一个奇怪的错误:

[ 1%] Building CXX object CMakeFiles/tfs.dir/src/actions.cpp.o
In file included from /home/travis/build/dominique120/miniature-adventure/src/actions.cpp:20:
In file included from /home/travis/build/dominique120/miniature-adventure/src/otpch.h:27:
/home/travis/build/dominique120/miniature-adventure/src/definitions.h:39:10: fatal error:
'cmath' file not found
 #include <cmath>
 ^
make: *** [all] Error 2

我的actions.cpp第20行:
#include "otpch.h"

otpch.h第27行:
#include "definitions.h"

definitions.h第31行:
#include <cmath>

我进行了一些编辑,但不知道是什么导致了此错误,请在此处进行编辑:https://github.com/dominique120/miniature-adventure/commits/master

PS:GCC只会抛出大量错误:
https://travis-ci.org/dominique120/miniature-adventure/jobs/21905513

最佳答案

在搜寻我在macOS上遇到的问题后,我来到了您的岗位。我正在共享一个解决方案,即使它仅适用于Mac用户。

您有可能升级了Xcode(或为您升级了Xcode),并且继续使用旧的编译方案。

确定磁盘上实际存在以下哪个目录:

/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/

并确保在您的编译开关中,您具有-I以及一个存在的目录。

08-17 05:12