40f7068f11
jimtcl tries to use 'ccache' (a non-buildroot host version) which may not exist on the host system. If ccache is enabled in buildroot, the compiler used by jimtcl is: ccache <buildroot>/.../ccache <buildroot>/.../<tuple>-gcc If ccache is not present on the host, this results in the build error: ccache <buildroot>/.../ccache <buildroot>/.../<tuple>-gcc -D_GNU_SOURCE -Wall -I. -fpic -pipe -Os -c -o jim-subcmd.o jim-subcmd.c make[1]: ccache: Command not found This patch passes 'CCACHE=none' to the 'configure' script, disabling the internal handling of ccache, so that ccache can be transparently passed through CC. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
65 lines
1.4 KiB
Makefile
65 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# jimtcl
|
|
#
|
|
################################################################################
|
|
|
|
JIMTCL_VERSION = 0.73
|
|
JIMTCL_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/j/jimtcl
|
|
JIMTCL_SOURCE = jimtcl_$(JIMTCL_VERSION).orig.tar.bz2
|
|
JIMTCL_INSTALL_STAGING = YES
|
|
JIMTCL_LICENSE = BSD-2c
|
|
JIMTCL_LICENSE_FILES = LICENSE
|
|
|
|
JIMTCL_HEADERS_TO_INSTALL = \
|
|
jim.h \
|
|
jim-eventloop.h \
|
|
jim-signal.h \
|
|
jim-subcmd.h \
|
|
jim-win32compat.h \
|
|
jim-config.h \
|
|
|
|
ifeq ($(BR2_PACKAGE_TCL),)
|
|
define JIMTCL_LINK_TCLSH
|
|
ln -sf jimsh $(TARGET_DIR)/usr/bin/tclsh
|
|
endef
|
|
endif
|
|
|
|
ifeq ($(BR2_PREFER_STATIC_LIB),y)
|
|
JIMTCL_SHARED =
|
|
JIMTCL_LIB = a
|
|
JIMTCL_INSTALL_LIB =
|
|
else
|
|
JIMTCL_SHARED = --shared
|
|
JIMTCL_LIB = so
|
|
JIMTCL_INSTALL_LIB = $(INSTALL) -D $(@D)/libjim.$(JIMTCL_LIB) \
|
|
$(TARGET_DIR)/usr/lib/libjim.$(JIMTCL_LIB)
|
|
endif
|
|
|
|
define JIMTCL_CONFIGURE_CMDS
|
|
(cd $(@D); \
|
|
$(TARGET_CONFIGURE_OPTS) CCACHE=none \
|
|
./configure --prefix=/usr \
|
|
$(JIMTCL_SHARED) \
|
|
)
|
|
endef
|
|
|
|
define JIMTCL_BUILD_CMDS
|
|
$(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define JIMTCL_INSTALL_STAGING_CMDS
|
|
for i in $(JIMTCL_HEADERS_TO_INSTALL); do \
|
|
cp -a $(@D)/$$i $(STAGING_DIR)/usr/include/ ; \
|
|
done; \
|
|
$(INSTALL) -D $(@D)/libjim.$(JIMTCL_LIB) $(STAGING_DIR)/usr/lib/libjim.$(JIMTCL_LIB)
|
|
endef
|
|
|
|
define JIMTCL_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D $(@D)/jimsh $(TARGET_DIR)/usr/bin/jimsh
|
|
$(JIMTCL_INSTALL_LIB)
|
|
$(JIMTCL_LINK_TCLSH)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|