The search paths for runtimes (clang -print-runtime-dir) and the CMake code don't agree on when to normalize the triple. clang always normalizes, but CMake just appends the literal triple as it was passed to the build. This can break distribution builds. That in turn causes a hard to...
Hi everyone, I am testing compiler-rt in LLVM_ENABLE_RUNTIMES along with libcxx and libcxxabi. I am coming across certain problems regarding install step of compiler-rt builtins. Previously with compiler-rt in LLVM_ENABLE_PROJECTS we use...
``LLVM_ENABLE_RUNTIMES`` can include any of libcxx, libcxxabi, libunwind, compiler-rt, libc or openmp. Some runtime projects can be specified either in ``LLVM_ENABLE_PROJECTS`` or in ``LLVM_ENABLE_RUNTIMES``. For example, to build LLVM, Clang, libcxx, and libcxxabi, use ``-DLLVM_...
``LLVM_ENABLE_RUNTIMES``. For example, to build LLVM, Clang, libcxx, and libcxxabi, use ``-DLLVM_ENABLE_PROJECTS="clang;libcxx;libcxxabi"``. ``-DLLVM_ENABLE_PROJECTS="clang" -DLLVM_ENABLE_RUNTIMES="libcxx;libcxxabi"``. * ``-DCMAKE_INSTALL_PREFIX=directory`` --- Specify for *direct...