b0470c5039
Fix the following build failure with host-lld, libclc, etc. raised since
bump to version 11.1.0 in commit
456f704e6b
:
CMake Error at cmake/modules/CheckCompilerVersion.cmake:38 (message):
Host GCC version must be at least 5.1, your version is 4.8.5.
Fixes:
- http://autobuild.buildroot.org/results/7f120dbcbd5410477550fa8645e7d1cb0ae6cf1c
- http://autobuild.buildroot.org/results/2382d7112618236aeafcaf581dc22a8d938824cf
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16 lines
550 B
Plaintext
16 lines
550 B
Plaintext
config BR2_PACKAGE_COMPILER_RT
|
|
bool "compiler-rt"
|
|
depends on BR2_PACKAGE_LLVM
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC # asan lib requires
|
|
depends on BR2_HOST_GCC_AT_LEAST_5 # host-clang
|
|
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, a glibc toolchain, host gcc >= 5"
|
|
depends on !BR2_PACKAGE_LLVM
|
|
depends on !BR2_TOOLCHAIN_USES_GLIBC || !BR2_HOST_GCC_AT_LEAST_5
|