Config.in 550 B

123456789101112131415
  1. config BR2_PACKAGE_COMPILER_RT
  2. bool "compiler-rt"
  3. depends on BR2_PACKAGE_LLVM
  4. depends on BR2_TOOLCHAIN_USES_GLIBC # asan lib requires
  5. depends on BR2_HOST_GCC_AT_LEAST_7 # host-clang
  6. help
  7. A collection of runtime libraries primarily used by clang and
  8. llvm to provide builtins, sanitizer runtimes, and profiling
  9. at runtime.
  10. https://compiler-rt.llvm.org/
  11. comment "compiler-rt requires llvm to be enabled, a glibc toolchain, host gcc >= 7"
  12. depends on !BR2_PACKAGE_LLVM
  13. depends on !BR2_TOOLCHAIN_USES_GLIBC || !BR2_HOST_GCC_AT_LEAST_7