1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-09-30 08:01:25 +02:00

uclibc: to rebuild libc.so.0, mklibs.py needs access to libc_so.a which was not exported by default. use it instead of libc_pic.a

SVN-Revision: 17438
This commit is contained in:
Felix Fietkau 2009-08-29 11:56:27 +00:00
parent fc5426e4bc
commit 91fe363562
2 changed files with 2 additions and 0 deletions

@ -247,6 +247,7 @@ endef
define Package/libc/install_lib
$(CP) $(filter-out %/libdl_pic.a,$(wildcard $(TOOLCHAIN_DIR)/usr/lib/lib*.a)) $(1)/lib/
$(if $(wildcard $(TOOLCHAIN_DIR)/usr/lib/libc_so.a),$(CP) $(TOOLCHAIN_DIR)/usr/lib/libc_so.a $(1)/lib/libc_pic.a)
$(CP) $(TOOLCHAIN_DIR)/usr/lib/gcc/*/*/libgcc.a $(1)/lib/libgcc_s_pic.a
endef

@ -102,6 +102,7 @@ define Host/Compile
$(UCLIBC_MAKE) PREFIX= all
$(UCLIBC_MAKE) PREFIX="$(TOOLCHAIN_DIR)/" install_runtime install_dev
ln -sf ../../lib/libc.so.0 $(TOOLCHAIN_DIR)/usr/lib/libc.so
$(CP) $(HOST_BUILD_DIR)/libc/libc_so.a $(TOOLCHAIN_DIR)/usr/lib/
# ( cd $(TOOLCHAIN_DIR) ; \
# for d in lib usr/lib ; do \
# for f in libc.so libpthread.so libgcc_s.so ; do \