尝试编译llvm / clang
时../llvm/configure --enable-cxx11=yes --enable-libcpp=yes
--enable-optimized=yes --prefix=/usr/local --enable-targets=all
--with-gcc-toolchain=/usr/local/bin --enable-bindings=auto
发生以下错误:
[...]llvm/include/llvm/Support/AlignOf.h:19:10: fatal error: 'cstddef' file not found
#include <cstddef>
^
1 error generated.
rm: [...]/llvm_build/lib/Support/Release+Asserts/APFloat.d.tmp: No such file or directory
make[1]: *** [[...]/llvm_build/lib/Support/Release+Asserts/APFloat.o] Error 1
make: *** [all] Error 1
但cstddef
确实存在(在/usr/local/include/c++/4.8.0/
中)。将--includedir=/usr/local/include/c++/4.8.0/
添加到配置中也没有帮助。
这可能是什么原因?
答案 0 :(得分:1)
尝试使用cmake
构建或重新安装以下
mkdir build
cd build/
cmake .. \
-DCMAKE_BUILD_TYPE=Release \
-DLLVM_TARGETS_TO_BUILD="X86_64;JSBackend" \
-DLLVM_INCLUDE_EXAMPLES=OFF
我遇到了类似的错误并安装了必要的gcc-4.8
和libstdc++-4.8
库。至少为我工作。
sudo apt-get install build-essential
祝你好运。希望它有效