15 lines
461 B
Plaintext
15 lines
461 B
Plaintext
|
config BR2_PACKAGE_COMPILER_RT
|
||
|
bool "compiler-rt"
|
||
|
depends on BR2_PACKAGE_LLVM
|
||
|
depends on BR2_TOOLCHAIN_USES_GLIBC # asan lib requires
|
||
|
help
|
||
|
A collection of runtime libraries primarily used by clang and
|
||
|
llvm to provide builtins, sanitizer runtimes, and profiling
|
||
|
at runtime.
|
||
|
|
||
|
https://compiler-rt.llvm.org/
|
||
|
|
||
|
comment "compiler-rt requires llvm to be enabled and a glibc toolchain"
|
||
|
depends on !BR2_PACKAGE_LLVM
|
||
|
depends on !BR2_TOOLCHAIN_USES_GLIBC
|