|
@@ -680,6 +680,20 @@ endef
|
|
# nonetheless requested the installation of the FDPIC libraries to the
|
|
# nonetheless requested the installation of the FDPIC libraries to the
|
|
# target filesystem.
|
|
# target filesystem.
|
|
ifeq ($(BR2_BFIN_INSTALL_FDPIC_SHARED),y)
|
|
ifeq ($(BR2_BFIN_INSTALL_FDPIC_SHARED),y)
|
|
|
|
+define TOOLCHAIN_EXTERNAL_INSTALL_SYSROOT_LIBS_BFIN_FDPIC
|
|
|
|
+ $(Q)$(call MESSAGE,"Install external toolchain FDPIC libraries to staging...") ; \
|
|
|
|
+ FDPIC_EXTERNAL_CC=$(dir $(TOOLCHAIN_EXTERNAL_CC))/../../bfin-linux-uclibc/bin/bfin-linux-uclibc-gcc ; \
|
|
|
|
+ FDPIC_SYSROOT_DIR="$(call toolchain_find_sysroot,$${FDPIC_EXTERNAL_CC} $(TOOLCHAIN_EXTERNAL_CFLAGS))" ; \
|
|
|
|
+ FDPIC_LIB_DIR="$(call toolchain_find_libdir,$${FDPIC_EXTERNAL_CC} $(TOOLCHAIN_EXTERNAL_CFLAGS))" ; \
|
|
|
|
+ FDPIC_SUPPORT_LIB_DIR="" ; \
|
|
|
|
+ if test `find $${FDPIC_SYSROOT_DIR} -name 'libstdc++.a' | wc -l` -eq 0 ; then \
|
|
|
|
+ FDPIC_LIBSTDCPP_A_LOCATION=$$(LANG=C $${FDPIC_EXTERNAL_CC} $(TOOLCHAIN_EXTERNAL_CFLAGS) -print-file-name=libstdc++.a) ; \
|
|
|
|
+ if [ -e "$${FDPIC_LIBSTDCPP_A_LOCATION}" ]; then \
|
|
|
|
+ FDPIC_SUPPORT_LIB_DIR=`readlink -f $${FDPIC_LIBSTDCPP_A_LOCATION} | sed -r -e 's:libstdc\+\+\.a::'` ; \
|
|
|
|
+ fi ; \
|
|
|
|
+ fi ; \
|
|
|
|
+ $(call copy_toolchain_sysroot,$${FDPIC_SYSROOT_DIR},$${FDPIC_SYSROOT_DIR},,$${FDPIC_LIB_DIR},$${FDPIC_SUPPORT_LIB_DIR})
|
|
|
|
+endef
|
|
define TOOLCHAIN_EXTERNAL_INSTALL_BFIN_FDPIC
|
|
define TOOLCHAIN_EXTERNAL_INSTALL_BFIN_FDPIC
|
|
$(Q)$(call MESSAGE,"Install external toolchain FDPIC libraries to target...") ; \
|
|
$(Q)$(call MESSAGE,"Install external toolchain FDPIC libraries to target...") ; \
|
|
FDPIC_EXTERNAL_CC=$(dir $(TOOLCHAIN_EXTERNAL_CC))/../../bfin-linux-uclibc/bin/bfin-linux-uclibc-gcc ; \
|
|
FDPIC_EXTERNAL_CC=$(dir $(TOOLCHAIN_EXTERNAL_CC))/../../bfin-linux-uclibc/bin/bfin-linux-uclibc-gcc ; \
|
|
@@ -779,6 +793,7 @@ TOOLCHAIN_EXTERNAL_BUILD_CMDS = $(TOOLCHAIN_BUILD_WRAPPER)
|
|
define TOOLCHAIN_EXTERNAL_INSTALL_STAGING_CMDS
|
|
define TOOLCHAIN_EXTERNAL_INSTALL_STAGING_CMDS
|
|
$(TOOLCHAIN_EXTERNAL_CREATE_STAGING_LIB_SYMLINK)
|
|
$(TOOLCHAIN_EXTERNAL_CREATE_STAGING_LIB_SYMLINK)
|
|
$(TOOLCHAIN_EXTERNAL_INSTALL_SYSROOT_LIBS)
|
|
$(TOOLCHAIN_EXTERNAL_INSTALL_SYSROOT_LIBS)
|
|
|
|
+ $(TOOLCHAIN_EXTERNAL_INSTALL_SYSROOT_LIBS_BFIN_FDPIC)
|
|
$(TOOLCHAIN_EXTERNAL_INSTALL_WRAPPER)
|
|
$(TOOLCHAIN_EXTERNAL_INSTALL_WRAPPER)
|
|
$(TOOLCHAIN_EXTERNAL_INSTALL_GDBINIT)
|
|
$(TOOLCHAIN_EXTERNAL_INSTALL_GDBINIT)
|
|
endef
|
|
endef
|
|
@@ -795,3 +810,4 @@ define TOOLCHAIN_EXTERNAL_INSTALL_TARGET_CMDS
|
|
endef
|
|
endef
|
|
|
|
|
|
$(eval $(generic-package))
|
|
$(eval $(generic-package))
|
|
|
|
+
|