From fbed636a79d6eb5ad66bb255b9710cb79ff4f353 Mon Sep 17 00:00:00 2001 From: nbd Date: Thu, 14 Jun 2012 20:25:57 +0000 Subject: add uclibc++ (from packages) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32367 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/uclibc++/patches/002-path_to_bash.patch | 12 +++ package/uclibc++/patches/003-cp_command.patch | 19 ++++ package/uclibc++/patches/004-ccache_fixes.patch | 24 +++++ package/uclibc++/patches/005-wrapper.patch | 12 +++ package/uclibc++/patches/006-eabi_fix.patch | 42 ++++++++ package/uclibc++/patches/010-gcc47x_support.patch | 126 ++++++++++++++++++++++ 6 files changed, 235 insertions(+) create mode 100644 package/uclibc++/patches/002-path_to_bash.patch create mode 100644 package/uclibc++/patches/003-cp_command.patch create mode 100644 package/uclibc++/patches/004-ccache_fixes.patch create mode 100644 package/uclibc++/patches/005-wrapper.patch create mode 100644 package/uclibc++/patches/006-eabi_fix.patch create mode 100644 package/uclibc++/patches/010-gcc47x_support.patch (limited to 'package/uclibc++/patches') diff --git a/package/uclibc++/patches/002-path_to_bash.patch b/package/uclibc++/patches/002-path_to_bash.patch new file mode 100644 index 000000000..05d0e6ff4 --- /dev/null +++ b/package/uclibc++/patches/002-path_to_bash.patch @@ -0,0 +1,12 @@ +diff -ur old/bin/Makefile dev/bin/Makefile +--- old/bin/Makefile Sat Oct 14 17:49:54 2006 ++++ dev/bin/Makefile Sat Oct 14 17:57:33 2006 +@@ -13,7 +13,7 @@ + $(INSTALL) -m 755 $(WRAPPER) $(PREFIX)$(UCLIBCXX_RUNTIME_BINDIR) + + $(WRAPPER): +- echo '#!/bin/sh' > $(WRAPPER) ++ echo '#!/usr/bin/env bash' > $(WRAPPER) + echo '' >> $(WRAPPER) + echo 'WRAPPER_INCLUDEDIR="$${WRAPPER_INCLUDEDIR:=-I$(UCLIBCXX_RUNTIME_INCLUDEDIR)}"' >> $(WRAPPER) + echo 'WRAPPER_LIBDIR="$${WRAPPER_LIBDIR:=-L$(UCLIBCXX_RUNTIME_LIBDIR)}"' >> $(WRAPPER) diff --git a/package/uclibc++/patches/003-cp_command.patch b/package/uclibc++/patches/003-cp_command.patch new file mode 100644 index 000000000..53d0ed7af --- /dev/null +++ b/package/uclibc++/patches/003-cp_command.patch @@ -0,0 +1,19 @@ +diff -ur old/src/Makefile dev/src/Makefile +--- old/src/Makefile Sat Oct 14 17:49:54 2006 ++++ dev/src/Makefile Sat Oct 14 18:02:30 2006 +@@ -25,12 +25,14 @@ + + all: libgcc_eh libsupc $(EXOBJS) $(ALLBIN) + ++CP = cp -fPR ++ + install: + $(INSTALL) -d $(PREFIX)$(UCLIBCXX_RUNTIME_LIBDIR) + ifneq ($(BUILD_ONLY_STATIC_LIB),y) + $(INSTALL) -m 755 $(SHARED_FULLNAME) \ + $(PREFIX)$(UCLIBCXX_RUNTIME_LIBDIR) +- cp -fa $(SHARED_MAJORNAME) $(LIBNAME).so $(PREFIX)$(UCLIBCXX_RUNTIME_LIBDIR) ++ $(CP) $(SHARED_MAJORNAME) $(LIBNAME).so $(PREFIX)$(UCLIBCXX_RUNTIME_LIBDIR) + endif + ifeq ($(BUILD_STATIC_LIB),y) + $(INSTALL) -m 644 $(LIBNAME).a $(PREFIX)$(UCLIBCXX_RUNTIME_LIBDIR) diff --git a/package/uclibc++/patches/004-ccache_fixes.patch b/package/uclibc++/patches/004-ccache_fixes.patch new file mode 100644 index 000000000..10ceb792b --- /dev/null +++ b/package/uclibc++/patches/004-ccache_fixes.patch @@ -0,0 +1,24 @@ +diff -ruN uClibc++-0.2.2-old/src/abi/libgcc_eh/Makefile uClibc++-0.2.2-new/src/abi/libgcc_eh/Makefile +--- uClibc++-0.2.2-old/src/abi/libgcc_eh/Makefile 2007-06-04 00:51:13.000000000 +0200 ++++ uClibc++-0.2.2-new/src/abi/libgcc_eh/Makefile 2007-09-03 21:51:07.000000000 +0200 +@@ -16,7 +16,7 @@ + # + #else + # echo Binary +- $(AR) x $(shell CC=$(CC) $(TOPDIR)/scripts/find_libgcc_eh.sh) ++ $(AR) x $(shell CC="$(CC)" $(TOPDIR)/scripts/find_libgcc_eh.sh) + #endif + #endif + +diff -ruN uClibc++-0.2.2-old/src/abi/libsupc/Makefile uClibc++-0.2.2-new/src/abi/libsupc/Makefile +--- uClibc++-0.2.2-old/src/abi/libsupc/Makefile 2007-06-04 00:51:13.000000000 +0200 ++++ uClibc++-0.2.2-new/src/abi/libsupc/Makefile 2007-09-03 21:51:17.000000000 +0200 +@@ -14,7 +14,7 @@ + # + #else + # echo Binary +- $(AR) x $(shell CC=$(CC) $(TOPDIR)/scripts/find_libsupc.sh) ++ $(AR) x $(shell CC="$(CC)" $(TOPDIR)/scripts/find_libsupc.sh) + $(RM) -f new_op*.o del_op*.o pure.o new_handler.o eh_alloc.o eh_globals.o + # + #endif diff --git a/package/uclibc++/patches/005-wrapper.patch b/package/uclibc++/patches/005-wrapper.patch new file mode 100644 index 000000000..b526a901f --- /dev/null +++ b/package/uclibc++/patches/005-wrapper.patch @@ -0,0 +1,12 @@ +diff -ruN uClibc++-0.2.2-old/bin/Makefile uClibc++-0.2.2-new/bin/Makefile +--- uClibc++-0.2.2-old/bin/Makefile 2007-09-23 13:46:10.000000000 +0200 ++++ uClibc++-0.2.2-new/bin/Makefile 2007-09-23 13:47:03.000000000 +0200 +@@ -25,7 +25,7 @@ + echo 'while [ -n "$$1" ]' >> $(WRAPPER) + echo 'do' >> $(WRAPPER) + echo ' WRAPPER_OPTIONS="$$WRAPPER_OPTIONS $$1"' >> $(WRAPPER) +- echo ' if [ "$$1" = "-c" -o "$$1" = "-E" -o "$$1" = "-S" ]' >> $(WRAPPER) ++ echo ' if [ "$$1" = "-c" -o "$$1" = "-E" -o "$$1" = "-S" -o "$$1" = "-MF" ]' >> $(WRAPPER) + echo ' then' >> $(WRAPPER) + echo ' WRAPPER_INCLIB="N"' >> $(WRAPPER) + echo ' fi' >> $(WRAPPER) diff --git a/package/uclibc++/patches/006-eabi_fix.patch b/package/uclibc++/patches/006-eabi_fix.patch new file mode 100644 index 000000000..bc970a716 --- /dev/null +++ b/package/uclibc++/patches/006-eabi_fix.patch @@ -0,0 +1,42 @@ +Index: uClibc++-0.2.2/include/typeinfo +=================================================================== +--- uClibc++-0.2.2.orig/include/typeinfo 2008-02-13 00:37:04.000000000 +0100 ++++ uClibc++-0.2.2/include/typeinfo 2008-02-13 00:37:34.000000000 +0100 +@@ -44,6 +44,7 @@ + class __class_type_info; + } // namespace __cxxabiv1 + ++#ifndef __GXX_MERGED_TYPEINFO_NAMES + #if !__GXX_WEAK__ + // If weak symbols are not supported, typeinfo names are not merged. + #define __GXX_MERGED_TYPEINFO_NAMES 0 +@@ -51,6 +52,7 @@ + // On platforms that support weak symbols, typeinfo names are merged. + #define __GXX_MERGED_TYPEINFO_NAMES 1 + #endif ++#endif + + namespace std + { +Index: uClibc++-0.2.2/include/unwind-cxx.h +=================================================================== +--- uClibc++-0.2.2.orig/include/unwind-cxx.h 2008-02-13 00:38:04.000000000 +0100 ++++ uClibc++-0.2.2/include/unwind-cxx.h 2008-02-13 00:40:32.000000000 +0100 +@@ -135,6 +135,7 @@ + + // This is the exception class we report -- "GNUCC++\0". + const _Unwind_Exception_Class __gxx_exception_class ++#ifndef __ARM_EABI_UNWINDER__ + = ((((((((_Unwind_Exception_Class) 'G' + << 8 | (_Unwind_Exception_Class) 'N') + << 8 | (_Unwind_Exception_Class) 'U') +@@ -143,6 +144,9 @@ + << 8 | (_Unwind_Exception_Class) '+') + << 8 | (_Unwind_Exception_Class) '+') + << 8 | (_Unwind_Exception_Class) '\0'); ++#else ++= "GNUC++"; ++#endif + + // GNU C++ personality routine, Version 0. + extern "C" _Unwind_Reason_Code __gxx_personality_v0 diff --git a/package/uclibc++/patches/010-gcc47x_support.patch b/package/uclibc++/patches/010-gcc47x_support.patch new file mode 100644 index 000000000..a000813b4 --- /dev/null +++ b/package/uclibc++/patches/010-gcc47x_support.patch @@ -0,0 +1,126 @@ +--- a/include/associative_base ++++ b/include/associative_base +@@ -511,7 +511,7 @@ + + pair insert(const value_type& x){ + pair retval; +- iterator location = lower_bound(value_to_key(x)); ++ iterator location = lower_bound(this->value_to_key(x)); + retval.second = true; + //Empty list or need to insert at end + if(end() == location){ +@@ -520,7 +520,7 @@ + return retval; + } + //Something in the list +- if(c(value_to_key(x), value_to_key(*location))){ ++ if(c(this->value_to_key(x), this->value_to_key(*location))){ + location = backing.insert(location.base_iterator(), x); + retval.first = location; + }else{ +@@ -604,7 +604,7 @@ + } + + iterator insert(const value_type& x){ +- iterator location = lower_bound(value_to_key(x)); ++ iterator location = lower_bound(this->value_to_key(x)); + + if(location == begin()){ + backing.push_front(x); +--- a/include/fstream ++++ b/include/fstream +@@ -72,9 +72,9 @@ + pbuffer = new char_type[__UCLIBCXX_IOSTREAM_BUFSIZE__]; + gbuffer = new char_type[__UCLIBCXX_IOSTREAM_BUFSIZE__]; + +- setp(pbuffer, pbuffer + __UCLIBCXX_IOSTREAM_BUFSIZE__); ++ this->setp(pbuffer, pbuffer + __UCLIBCXX_IOSTREAM_BUFSIZE__); + //Position get buffer so that there is no data available +- setg(gbuffer, gbuffer + __UCLIBCXX_IOSTREAM_BUFSIZE__, ++ this->setg(gbuffer, gbuffer + __UCLIBCXX_IOSTREAM_BUFSIZE__, + gbuffer + __UCLIBCXX_IOSTREAM_BUFSIZE__); + } + +--- a/include/string ++++ b/include/string +@@ -426,7 +426,7 @@ + } + _UCXXEXPORT size_type find (Ch c, size_type pos = 0) const{ + for(size_type i = pos; i < length(); ++i){ +- if(operator[](i) == c){ ++ if(this->operator[](i) == c){ + return i; + } + } +@@ -456,7 +456,7 @@ + _UCXXEXPORT size_type find_first_of(const basic_string& str, size_type pos = 0) const{ + for(size_type i = pos; i < length(); ++i){ + for(size_type j = 0; j < str.length() ; ++j){ +- if( Tr::eq(str[j], operator[](i)) ){ ++ if( Tr::eq(str[j], this->operator[](i)) ){ + return i; + } + } +@@ -472,7 +472,7 @@ + } + _UCXXEXPORT size_type find_first_of(Ch c, size_type pos = 0) const{ + for(size_type i = pos; i< length(); ++i){ +- if( Tr::eq(operator[](i), c) ){ ++ if( Tr::eq(this->operator[](i), c) ){ + return i; + } + } +@@ -485,7 +485,7 @@ + } + for(size_type i = pos; i >0 ; --i){ + for(size_type j = 0 ; j < str.length(); ++j){ +- if( Tr::eq(operator[](i-1), str[j]) ){ ++ if( Tr::eq(this->operator[](i-1), str[j]) ){ + return i-1; + } + } +@@ -503,7 +503,7 @@ + pos = length(); + } + for(size_type i = pos; i >0 ; --i){ +- if( Tr::eq(operator[](i-1), c) ){ ++ if( Tr::eq(this->operator[](i-1), c) ){ + return i-1; + } + } +@@ -515,7 +515,7 @@ + for(size_type i = pos; i < length(); ++i){ + foundCharacter = false; + for(size_type j = 0; j < str.length() ; ++j){ +- if( Tr::eq(str[j], operator[](i)) ){ ++ if( Tr::eq(str[j], this->operator[](i)) ){ + foundCharacter = true; + } + } +@@ -534,7 +534,7 @@ + } + _UCXXEXPORT size_type find_first_not_of(Ch c, size_type pos = 0) const{ + for(size_type i = pos; i < length() ; ++i){ +- if(operator[](i) != c){ ++ if(this->operator[](i) != c){ + return i; + } + } +@@ -546,7 +546,7 @@ + xpos = pos; + } + +- while(xpos != npos && npos != str.find_first_of(at(xpos))){ ++ while(xpos != npos && npos != str.find_first_of(this->at(xpos))){ + --xpos; + } + +@@ -564,7 +564,7 @@ + if(xpos > pos){ + xpos = pos; + } +- while(xpos != npos && Tr::eq(at(xpos), c)){ ++ while(xpos != npos && Tr::eq(this->at(xpos), c)){ + --xpos; + } + return xpos; -- cgit v1.2.3