|
|
|
@ -417,7 +417,7 @@ ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),) |
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
define Package/libc/install_lib
|
|
|
|
|
$(CP) $(filter-out %/libdl_pic.a,$(wildcard $(TOOLCHAIN_DIR)/usr/lib/lib*.a)) $(1)/lib/
|
|
|
|
|
$(CP) $(filter-out %/libdl_pic.a %/libpthread_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)
|
|
|
|
|
$(if $(wildcard $(TOOLCHAIN_DIR)/usr/lib/gcc/*/*/libgcc.map), \
|
|
|
|
|
$(CP) $(TOOLCHAIN_DIR)/usr/lib/gcc/*/*/libgcc_pic.a $(1)/lib/libgcc_s_pic.a; \
|
|
|
|
@ -431,6 +431,10 @@ ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),) |
|
|
|
|
$(CP) $(TOOLCHAIN_DIR)/lib/libpthread-$(LIBC_SO_VERSION).so $(1)/lib/
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
define Package/libpthread/install_lib
|
|
|
|
|
$(if $(wildcard $(TOOLCHAIN_DIR)/usr/lib/libc_so.a),$(CP) $(TOOLCHAIN_DIR)/usr/lib/libpthread_so.a $(1)/lib/libpthread_pic.a)
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
define Package/librt/install
|
|
|
|
|
$(INSTALL_DIR) $(1)/lib
|
|
|
|
|
$(CP) $(TOOLCHAIN_DIR)/lib/librt.so.* $(1)/lib/
|
|
|
|
|