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
495 B
Plaintext
16 lines
495 B
Plaintext
config BR2_PACKAGE_HOST_LLD
|
|
bool "host lld"
|
|
depends on BR2_PACKAGE_LLVM_ARCH_SUPPORTS # llvm
|
|
depends on BR2_HOST_GCC_AT_LEAST_5 # host-llvm
|
|
help
|
|
LLD is a linker from the LLVM project that is a drop-in
|
|
replacement for system linkers, and runs much faster than
|
|
them. It also provides features that are useful for
|
|
toolchain developers.
|
|
|
|
https://lld.llvm.org/
|
|
|
|
comment "host lld needs host gcc >= 5"
|
|
depends on BR2_PACKAGE_LLVM_ARCH_SUPPORTS
|
|
depends on !BR2_HOST_GCC_AT_LEAST_5
|