bffce31ec1
Configure.py extracts arch, vendor, and os from the passed toolchain string on line 180. When using ccache, the passed path string is "/usr/lib64/ccache/g++" which breaks the logic, causing the following error: Traceback (most recent call last): File "./configure.py", line 180, in <module> (t_arch, t_vendor, t_os) = target.split('-') ValueError: not enough values to unpack (expected 3, got 1) Use --with-cxx-compiler=$(HOSTCXX_NOCCACHE) instead of $(HOSTCXX) to fix the above error. Signed-off-by: Adam Duskett <Aduskett@gmail.com> Reviewed-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# libclc
|
|
#
|
|
################################################################################
|
|
|
|
# Use the latest commit from release_90 branch.
|
|
LIBCLC_VERSION = d1cbc92e2ceee59963f5c3a576382e5bba31f060
|
|
LIBCLC_SITE = https://git.llvm.org/git/libclc
|
|
LIBCLC_SITE_METHOD = git
|
|
LIBCLC_LICENSE = Apache-2.0 with exceptions or MIT
|
|
LIBCLC_LICENSE_FILES = LICENSE.TXT
|
|
|
|
LIBCLC_DEPENDENCIES = host-clang host-llvm
|
|
LIBCLC_INSTALL_STAGING = YES
|
|
|
|
# C++ compiler is used to build a small tool (prepare-builtins) for the host.
|
|
# It must be built with the C++ compiler from the host.
|
|
#
|
|
# The headers are installed in /usr/share and not /usr/include,
|
|
# because they are needed at runtime on the target to build the OpenCL
|
|
# kernels.
|
|
LIBCLC_CONF_OPTS = \
|
|
--with-llvm-config=$(HOST_DIR)/usr/bin/llvm-config \
|
|
--prefix=/usr \
|
|
--includedir=/usr/share \
|
|
--pkgconfigdir=/usr/lib/pkgconfig \
|
|
--with-cxx-compiler=$(HOSTCXX_NOCCACHE)
|
|
|
|
define LIBCLC_CONFIGURE_CMDS
|
|
(cd $(@D); $(TARGET_CONFIGURE_OPTS) ./configure.py $(LIBCLC_CONF_OPTS))
|
|
endef
|
|
|
|
define LIBCLC_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define LIBCLC_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
define LIBCLC_INSTALL_STAGING_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|