You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
6.5 KiB
148 lines
6.5 KiB
16 years ago
|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
||
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
||
|
#
|
||
13 years ago
|
# Filename: package/.../gcc/gcc-4.6-multilib-1.patch
|
||
12 years ago
|
# Copyright (C) 2009 - 2012 The OpenSDE Project
|
||
16 years ago
|
#
|
||
|
# More information can be found in the files COPYING and README.
|
||
|
#
|
||
|
# This patch file is dual-licensed. It is available under the license the
|
||
|
# patched project is licensed under, as long as it is an OpenSource license
|
||
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
|
||
|
# of the GNU General Public License as published by the Free Software
|
||
|
# Foundation; either version 2 of the License, or (at your option) any later
|
||
|
# version.
|
||
|
# --- SDE-COPYRIGHT-NOTE-END ---
|
||
|
|
||
12 years ago
|
From 5062892f2adef4afdf0a251decd76fd446777b8a Mon Sep 17 00:00:00 2001
|
||
|
From: Christian Wiese <chris@opensde.org>
|
||
|
Date: Mon, 6 Aug 2012 14:24:08 +0200
|
||
|
Subject: [PATCH] adjust multilib dirnames to suite OpenSDE's lib as symlink strategy
|
||
|
|
||
|
---
|
||
|
gcc/config/i386/linux64.h | 2 +-
|
||
|
gcc/config/i386/t-linux64 | 2 +-
|
||
|
gcc/config/mips/linux64.h | 6 +++---
|
||
|
gcc/config/mips/t-linux64 | 2 +-
|
||
|
gcc/config/rs6000/linux64.h | 6 +++---
|
||
|
gcc/config/rs6000/t-linux64 | 2 +-
|
||
|
gcc/config/sparc/linux64.h | 4 ++--
|
||
|
gcc/config/sparc/t-linux64 | 2 +-
|
||
|
8 files changed, 13 insertions(+), 13 deletions(-)
|
||
|
|
||
15 years ago
|
diff --git a/gcc/config/i386/linux64.h b/gcc/config/i386/linux64.h
|
||
12 years ago
|
index 5b0a212..984c147 100644
|
||
15 years ago
|
--- a/gcc/config/i386/linux64.h
|
||
|
+++ b/gcc/config/i386/linux64.h
|
||
12 years ago
|
@@ -28,6 +28,6 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
||
|
#define GNU_USER_LINK_EMULATION64 "elf_x86_64"
|
||
|
#define GNU_USER_LINK_EMULATIONX32 "elf32_x86_64"
|
||
16 years ago
|
|
||
|
-#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
|
||
|
+#define GLIBC_DYNAMIC_LINKER32 "/lib32/ld-linux.so.2"
|
||
|
#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux-x86-64.so.2"
|
||
12 years ago
|
#define GLIBC_DYNAMIC_LINKERX32 "/libx32/ld-linux-x32.so.2"
|
||
15 years ago
|
diff --git a/gcc/config/i386/t-linux64 b/gcc/config/i386/t-linux64
|
||
12 years ago
|
index b5d3985..d530d97 100644
|
||
15 years ago
|
--- a/gcc/config/i386/t-linux64
|
||
|
+++ b/gcc/config/i386/t-linux64
|
||
12 years ago
|
@@ -35,5 +35,5 @@ comma=,
|
||
|
MULTILIB_OPTIONS = $(subst $(comma),/,$(TM_MULTILIB_CONFIG))
|
||
|
MULTILIB_DIRNAMES = $(patsubst m%, %, $(subst /, ,$(MULTILIB_OPTIONS)))
|
||
|
MULTILIB_OSDIRNAMES = m64=../lib64
|
||
|
-MULTILIB_OSDIRNAMES+= m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)
|
||
|
+MULTILIB_OSDIRNAMES+= m32=$(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib32)
|
||
|
MULTILIB_OSDIRNAMES+= mx32=../libx32
|
||
15 years ago
|
diff --git a/gcc/config/mips/linux64.h b/gcc/config/mips/linux64.h
|
||
12 years ago
|
index 6e92719..4436d75 100644
|
||
15 years ago
|
--- a/gcc/config/mips/linux64.h
|
||
|
+++ b/gcc/config/mips/linux64.h
|
||
12 years ago
|
@@ -23,10 +23,10 @@ along with GCC; see the file COPYING3. If not see
|
||
|
#define GNU_USER_LINK_EMULATION64 "elf64%{EB:b}%{EL:l}tsmip"
|
||
|
#define GNU_USER_LINK_EMULATIONN32 "elf32%{EB:b}%{EL:l}tsmipn32"
|
||
16 years ago
|
|
||
|
-#define GLIBC_DYNAMIC_LINKER32 "/lib/ld.so.1"
|
||
|
+#define GLIBC_DYNAMIC_LINKER32 "/lib32/ld.so.1"
|
||
|
#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld.so.1"
|
||
|
-#define GLIBC_DYNAMIC_LINKERN32 "/lib32/ld.so.1"
|
||
12 years ago
|
-#define UCLIBC_DYNAMIC_LINKERN32 "/lib32/ld-uClibc.so.0"
|
||
|
+#define GLIBC_DYNAMIC_LINKERN32 "/libn32/ld.so.1"
|
||
|
+#define UCLIBC_DYNAMIC_LINKERN32 "/libn32/ld-uClibc.so.0"
|
||
13 years ago
|
#define BIONIC_DYNAMIC_LINKERN32 "/system/bin/linker32"
|
||
12 years ago
|
#define GNU_USER_DYNAMIC_LINKERN32 \
|
||
|
CHOOSE_DYNAMIC_LINKER (GLIBC_DYNAMIC_LINKERN32, UCLIBC_DYNAMIC_LINKERN32, \
|
||
15 years ago
|
diff --git a/gcc/config/mips/t-linux64 b/gcc/config/mips/t-linux64
|
||
12 years ago
|
index 5197e5e..b847f7d 100644
|
||
15 years ago
|
--- a/gcc/config/mips/t-linux64
|
||
|
+++ b/gcc/config/mips/t-linux64
|
||
12 years ago
|
@@ -18,4 +18,4 @@
|
||
13 years ago
|
|
||
17 years ago
|
MULTILIB_OPTIONS = mabi=n32/mabi=32/mabi=64
|
||
|
MULTILIB_DIRNAMES = n32 32 64
|
||
|
-MULTILIB_OSDIRNAMES = ../lib32 ../lib ../lib64
|
||
12 years ago
|
+MULTILIB_OSDIRNAMES = ../libn32 ../lib32 ../lib64
|
||
15 years ago
|
diff --git a/gcc/config/rs6000/linux64.h b/gcc/config/rs6000/linux64.h
|
||
12 years ago
|
index 7c516eb..9fd4b58 100644
|
||
15 years ago
|
--- a/gcc/config/rs6000/linux64.h
|
||
|
+++ b/gcc/config/rs6000/linux64.h
|
||
12 years ago
|
@@ -358,10 +358,10 @@ extern int dot_symbols;
|
||
16 years ago
|
#undef LINK_OS_DEFAULT_SPEC
|
||
|
#define LINK_OS_DEFAULT_SPEC "%(link_os_linux)"
|
||
17 years ago
|
|
||
16 years ago
|
-#define GLIBC_DYNAMIC_LINKER32 "/lib/ld.so.1"
|
||
|
+#define GLIBC_DYNAMIC_LINKER32 "/lib32/ld.so.1"
|
||
|
#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld64.so.1"
|
||
12 years ago
|
-#define UCLIBC_DYNAMIC_LINKER32 "/lib/ld-uClibc.so.0"
|
||
|
-#define UCLIBC_DYNAMIC_LINKER64 "/lib/ld64-uClibc.so.0"
|
||
|
+#define UCLIBC_DYNAMIC_LINKER32 "/lib32/ld-uClibc.so.0"
|
||
|
+#define UCLIBC_DYNAMIC_LINKER64 "/lib64/ld64-uClibc.so.0"
|
||
|
#if DEFAULT_LIBC == LIBC_UCLIBC
|
||
|
#define CHOOSE_DYNAMIC_LINKER(G, U) "%{mglibc:" G ";:" U "}"
|
||
|
#elif DEFAULT_LIBC == LIBC_GLIBC
|
||
15 years ago
|
diff --git a/gcc/config/rs6000/t-linux64 b/gcc/config/rs6000/t-linux64
|
||
12 years ago
|
index 6420431..de44202 100644
|
||
15 years ago
|
--- a/gcc/config/rs6000/t-linux64
|
||
|
+++ b/gcc/config/rs6000/t-linux64
|
||
12 years ago
|
@@ -31,5 +31,5 @@ MULTILIB_DIRNAMES = 64 32 nof
|
||
17 years ago
|
MULTILIB_EXTRA_OPTS = fPIC mstrict-align
|
||
16 years ago
|
MULTILIB_EXCEPTIONS = m64/msoft-float
|
||
|
MULTILIB_EXCLUSIONS = m64/!m32/msoft-float
|
||
|
-MULTILIB_OSDIRNAMES = ../lib64 $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib) nof
|
||
|
+MULTILIB_OSDIRNAMES = ../lib64 $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib32) nof
|
||
|
MULTILIB_MATCHES = $(MULTILIB_MATCHES_FLOAT)
|
||
15 years ago
|
diff --git a/gcc/config/sparc/linux64.h b/gcc/config/sparc/linux64.h
|
||
12 years ago
|
index 14966b9..0134911 100644
|
||
15 years ago
|
--- a/gcc/config/sparc/linux64.h
|
||
|
+++ b/gcc/config/sparc/linux64.h
|
||
12 years ago
|
@@ -93,7 +93,7 @@ along with GCC; see the file COPYING3. If not see
|
||
13 years ago
|
When the -shared link option is used a final link is not being
|
||
|
done. */
|
||
17 years ago
|
|
||
16 years ago
|
-#define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
|
||
|
+#define GLIBC_DYNAMIC_LINKER32 "/lib32/ld-linux.so.2"
|
||
|
#define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux.so.2"
|
||
15 years ago
|
|
||
|
#ifdef SPARC_BI_ARCH
|
||
12 years ago
|
@@ -105,7 +105,7 @@ along with GCC; see the file COPYING3. If not see
|
||
17 years ago
|
{ "link_arch_default", LINK_ARCH_DEFAULT_SPEC }, \
|
||
|
{ "link_arch", LINK_ARCH_SPEC },
|
||
16 years ago
|
|
||
15 years ago
|
-#define LINK_ARCH32_SPEC "-m elf32_sparc -Y P,%R/usr/lib %{shared:-shared} \
|
||
|
+#define LINK_ARCH32_SPEC "-m elf32_sparc -Y P,%R/usr/lib32 %{shared:-shared} \
|
||
17 years ago
|
%{!shared: \
|
||
13 years ago
|
%{!static: \
|
||
|
%{rdynamic:-export-dynamic} \
|
||
15 years ago
|
diff --git a/gcc/config/sparc/t-linux64 b/gcc/config/sparc/t-linux64
|
||
12 years ago
|
index d9dfad6..05230e8 100644
|
||
15 years ago
|
--- a/gcc/config/sparc/t-linux64
|
||
|
+++ b/gcc/config/sparc/t-linux64
|
||
12 years ago
|
@@ -26,4 +26,4 @@
|
||
13 years ago
|
|
||
17 years ago
|
MULTILIB_OPTIONS = m64/m32
|
||
|
MULTILIB_DIRNAMES = 64 32
|
||
13 years ago
|
-MULTILIB_OSDIRNAMES = ../lib64 $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib)
|
||
|
+MULTILIB_OSDIRNAMES = ../lib64 $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib32),../lib32,../lib32)
|
||
12 years ago
|
--
|
||
|
1.7.2.3
|
||
|
|