1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 01:01:52 +02:00

Package libstdc++ (#1883)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7581 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2007-06-12 11:06:39 +00:00
parent 08c054f87e
commit 534abbee1d

View File

@ -80,6 +80,13 @@ define Package/libssp
TITLE:=GCC support library
endef
define Package/libstdcpp
$(call Package/gcc/Default)
NAME:=libstdc++
TITLE:=GNU Standard C++ Library v3
DEPENDS:=@!NATIVE_TOOLCHAIN&&@INSTALL_LIBSTDCPP
endef
define Package/uclibc/Default
SECTION:=libs
CATEGORY:=Base system
@ -161,6 +168,11 @@ ifeq ($(word 1,$(subst ., ,$(LIBGCC_VERSION))),4)
endef
endif
define Package/libstdcpp/install
$(INSTALL_DIR) $(1)/lib
$(CP) $(STAGING_DIR)/lib/libstdc++.so.* $(1)/lib/
endef
define Package/libpthread/install
$(INSTALL_DIR) $(1)/lib
$(CP) $(STAGING_DIR)/lib/libpthread.so.* $(1)/lib/
@ -192,5 +204,6 @@ endif
$(eval $(call BuildPackage,base-files$(TARGET)))
$(eval $(call BuildPackage,libgcc))
$(eval $(call BuildPackage,libssp))
$(eval $(call BuildPackage,libstdcpp))
$(eval $(call BuildPackage,libpthread))
$(eval $(call BuildPackage,uclibc))