diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-05-04 18:41:08 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-05-04 18:41:08 +0000 |
commit | 1b6675367e2e57bb7fe3ae7edcd7b802004b839c (patch) | |
tree | 490ca362da7532b93334f1b28844ba999da2f2af /toolchain | |
parent | fe799c19a6b8d1a5a4f4e1fcee3eba9bf58cbca4 (diff) | |
download | upstream-1b6675367e2e57bb7fe3ae7edcd7b802004b839c.tar.gz upstream-1b6675367e2e57bb7fe3ae7edcd7b802004b839c.tar.bz2 upstream-1b6675367e2e57bb7fe3ae7edcd7b802004b839c.zip |
fix the uclibc rebuild issue which leads to unresolved symbols in libnl (and possibly other libraries)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15599 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/gcc/Makefile | 1 | ||||
-rw-r--r-- | toolchain/uClibc/Makefile | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index 346971c658..e9598d8177 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -176,6 +176,7 @@ define Stage1/Install # XXX: glibc insists on linking against libgcc_eh ( cd $(TOOLCHAIN_DIR)/usr/lib/gcc/$(REAL_GNU_TARGET_NAME)/$(PKG_VERSION) ; \ [ -e libgcc_eh.a ] || ln -sf libgcc.a libgcc_eh.a ; \ + cp libgcc.a libgcc_initial.a; \ ) endef diff --git a/toolchain/uClibc/Makefile b/toolchain/uClibc/Makefile index e8407fb9c5..b55796b40f 100644 --- a/toolchain/uClibc/Makefile +++ b/toolchain/uClibc/Makefile @@ -88,12 +88,13 @@ endef define Host/Configure endef -UCLIBC_MAKE := PATH=$(TARGET_PATH) $(MAKE) -C $(HOST_BUILD_DIR) \ +UCLIBC_MAKE = PATH=$(TARGET_PATH) $(MAKE) -C $(HOST_BUILD_DIR) \ $(TARGET_CONFIGURE_OPTS) \ DEVEL_PREFIX=/usr/ \ RUNTIME_PREFIX=/ \ HOSTCC="$(HOSTCC)" \ CPU_CFLAGS="$(TARGET_CFLAGS)" \ + LIBGCC="$(subst libgcc.a,libgcc_initial.a,$(shell $(TARGET_CC) -print-libgcc-file-name))" \ DOSTRIP="" define Host/Compile |