Displaying 3 results from an estimated 3 matches for "dllvm_enable_runtimes".
Did you mean:
llvm_enable_runtimes
2020 Apr 08
2
Clarifying the supported ways to build libc++, libc++abi and libunwind
...ich runtimes are being built, so you cannot use e.g. if (TARGET
cxxabi_shared) from within libc++ build because you don't have any
guarantee whether libc++abi has already been processed. So instead,
runtimes build sets these flags for each runtime being built (that is each
runtime specified in -DLLVM_ENABLE_RUNTIMES=) and you can at least check
whether that runtime is being built at all (e.g. you can check from within
libc++ whether libc++abi is also being built as part of the runtimes build).
There's more discussion related to this in
https://reviews.llvm.org/D68833, once
we update CMake to >=3.11 we&...
2019 Aug 21
2
Cannot run LLVM unit tests doe to python error in lit
Hello, LLVM community.
I've built a cross-toolchain on Windows and I'm now trying to run unit tests for the LLVM libraries.
I used Ninja as a build system and MSVC as host compiler without an issue, but when I try to run 'ninja check-llvm-unit', I get the following error:
llvm-lit.py: C:/Users/sergej/Developer/llvm-project/llvm\utils\lit\lit\TestingConfig.py:102: fatal: unable
2020 Apr 08
4
Clarifying the supported ways to build libc++, libc++abi and libunwind
[Cross-post to llvm-dev to make sure everybody relevant sees this]
Hi,
I'm currently trying to simplify the libc++/libc++abi/libunwind build systems and testing setup. In doing so, I am encountering issues related to "unusual" ways of building them. By unusual, I just mean "not the usual monorepo build with LLVM_ENABLE_PROJECTS". I would like to pin down what the set of