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>
15 lines
459 B
Plaintext
15 lines
459 B
Plaintext
config BR2_PACKAGE_LIBCLC
|
|
bool "libclc"
|
|
depends on BR2_PACKAGE_LLVM_ARCH_SUPPORTS
|
|
depends on BR2_HOST_GCC_AT_LEAST_5 # host-llvm
|
|
help
|
|
libclc is an open source, BSD licensed implementation of
|
|
the library requirements of the OpenCL C programming language,
|
|
as specified by the OpenCL 1.1 Specification.
|
|
|
|
http://libclc.llvm.org/
|
|
|
|
comment "libclc needs host gcc >= 5"
|
|
depends on BR2_PACKAGE_LLVM_ARCH_SUPPORTS
|
|
depends on !BR2_HOST_GCC_AT_LEAST_5
|