Displaying 1 result from an estimated 1 matches for "_toolchain70".
Did you mean:
toolchain70
2018 Dec 29
2
bootstrapping llvm with advanced configuration
...se
-DLLVM_ENABLE_ASSERTIONS=OFF -DCMAKE_INSTALL_PREFIX=/usr/local -GNinja
-DCLANG_ENABLE_BOOTSTRAP=ON ../toolchain70/llvm/
after that cmake command I run ninja stage2 which compiles about 3700
objects then it proceeds to try and compile the full 5000 plus objects but
fails with errors like these:
_toolchain70/llvm/projects/libcxx/include/cstdlib:114:9: error: no member
named 'strtold' in the global namespace
using ::strtold;
~~^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
I'd like to bootstrap clang and build libc++ and libc++abi, then use the
compiled clang to...