From a8164107ecc07933b244fd436ad1025d8ae1aff1 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Mon, 2 Sep 2013 18:06:28 +0200 Subject: [PATCH] eglibc: libstdc++ is not part of the C library For some reason, the eglibc.mk file was trying to install libstdc++.so from eglibc to the target. But the C++ standard library is provided by GCC, not by the C library. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- package/eglibc/eglibc.mk | 7 ------- 1 file changed, 7 deletions(-) diff --git a/package/eglibc/eglibc.mk b/package/eglibc/eglibc.mk index 8873a06fee..fe12299afc 100644 --- a/package/eglibc/eglibc.mk +++ b/package/eglibc/eglibc.mk @@ -89,17 +89,10 @@ ifeq ($(BR2_PACKAGE_GDB_SERVER),y) EGLIBC_LIBS_LIB += libthread_db.so endif -ifeq ($(BR2_INSTALL_LIBSTDCPP),y) -EGLIBC_LIBS_USR_LIB += libstdc++.so -endif - define EGLIBC_INSTALL_TARGET_CMDS for libs in $(EGLIBC_LIBS_LIB); do \ $(call copy_toolchain_lib_root,$(STAGING_DIR)/,,lib,$$libs,/lib) ; \ done - for libs in $(EGLIBC_LIBS_USR_LIB); do \ - $(call copy_toolchain_lib_root,$(STAGING_DIR)/,,lib,$$libs,/usr/lib) ; \ - done endef $(eval $(autotools-package))