mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-02-17 14:44:44 +02:00
toolchain/gcc: fix installing the toolchain after removing the toolchain dir without a full rebuild
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32554 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
40b6fce4a1
commit
b5d071eb9b
@ -28,14 +28,19 @@ ifneq ($(CONFIG_SJLJ_EXCEPTIONS),)
|
|||||||
--enable-sjlj-exceptions
|
--enable-sjlj-exceptions
|
||||||
endif
|
endif
|
||||||
|
|
||||||
define Host/Configure
|
define CleanupToolchain
|
||||||
mkdir -p $(GCC_BUILD_DIR) $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME)
|
$(INSTALL_DIR) $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME)
|
||||||
# Important! Required for limits.h to be fixed.
|
# Important! Required for limits.h to be fixed.
|
||||||
rm -rf $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME)/sys-include
|
rm -rf $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME)/sys-include
|
||||||
ln -sf ../include $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME)/sys-include
|
ln -sf ../include $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME)/sys-include
|
||||||
rm -rf $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME)/lib
|
rm -rf $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME)/lib
|
||||||
ln -sf ../lib $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME)/lib
|
ln -sf ../lib $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME)/lib
|
||||||
$(if $(CONFIG_mips64)$(CONFIG_mips64el)$(CONFIG_x86_64),ln -sf ../lib64 $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME)/lib64)
|
$(if $(CONFIG_mips64)$(CONFIG_mips64el)$(CONFIG_x86_64),ln -sf ../lib64 $(TOOLCHAIN_DIR)/$(REAL_GNU_TARGET_NAME)/lib64)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Host/Configure
|
||||||
|
$(CleanupToolchain)
|
||||||
|
mkdir -p $(GCC_BUILD_DIR)
|
||||||
(cd $(GCC_BUILD_DIR) && rm -f config.cache; \
|
(cd $(GCC_BUILD_DIR) && rm -f config.cache; \
|
||||||
$(GCC_CONFIGURE) \
|
$(GCC_CONFIGURE) \
|
||||||
);
|
);
|
||||||
@ -59,6 +64,7 @@ define SetupExtraArch
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
define Host/Install
|
define Host/Install
|
||||||
|
$(CleanupToolchain)
|
||||||
$(_SINGLE)$(GCC_MAKE) -C $(GCC_BUILD_DIR) install
|
$(_SINGLE)$(GCC_MAKE) -C $(GCC_BUILD_DIR) install
|
||||||
# Set up the symlinks to enable lying about target name.
|
# Set up the symlinks to enable lying about target name.
|
||||||
set -e; \
|
set -e; \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user