mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-22 06:07:49 +00:00
3d37777119
crosstool-ng's glibc patche is made against glibc/libc sub-dir. changeset 3052:06b663f297 is against glibc top-dir. it needs to split. Signed-off-by: "Jang, Bongseo" <graycells@gmail.com> [yann.morin.1998@free.fr: fix the ports patches depth] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Message-ID: <5040c8e83e35618361dc.1348370890@localhost.localdomain> PatchWork-ID: 186177
41 lines
1.5 KiB
Diff
41 lines
1.5 KiB
Diff
Upstream-Status: Backport
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
From 95f5a9a866695da4e038aa4e6ccbbfd5d9cf63b7 Mon Sep 17 00:00:00 2001
|
|
From: Joseph Myers <joseph@codesourcery.com>
|
|
Date: Tue, 3 Jul 2012 19:14:59 +0000
|
|
Subject: [PATCH] Avoid use of libgcc_s and libgcc_eh when building glibc.
|
|
|
|
---
|
|
ChangeLog | 47 ++++++++++++++++++++++++++++++
|
|
Makeconfig | 68 ++++++++++++++++++++++++++++++++++++++------
|
|
Rules | 45 ++++++++++++++++++++++-------
|
|
elf/Makefile | 6 +++-
|
|
elf/static-stubs.c | 46 ++++++++++++++++++++++++++++++
|
|
ports/ChangeLog.arm | 7 +++++
|
|
ports/sysdeps/arm/Makefile | 8 ++++++
|
|
7 files changed, 206 insertions(+), 21 deletions(-)
|
|
create mode 100644 elf/static-stubs.c
|
|
|
|
-Index: a/ports/sysdeps/arm/Makefile
|
|
===================================================================
|
|
--- a/ports/sysdeps/arm/Makefile 2012-07-04 18:25:41.000000000 -0700
|
|
+++ b/ports/sysdeps/arm/Makefile 2012-08-14 20:16:10.201093638 -0700
|
|
@@ -1,8 +1,16 @@
|
|
+gnulib-arch = $(elfobjdir)/libgcc-stubs.a
|
|
+static-gnulib-arch = $(elfobjdir)/libgcc-stubs.a
|
|
+
|
|
ifeq ($(subdir),elf)
|
|
sysdep-dl-routines += tlsdesc dl-tlsdesc
|
|
sysdep_routines += aeabi_unwind_cpp_pr1 find_exidx tlsdesc dl-tlsdesc
|
|
sysdep-rtld-routines += aeabi_unwind_cpp_pr1 tlsdesc dl-tlsdesc
|
|
shared-only-routines += aeabi_unwind_cpp_pr1
|
|
+
|
|
+$(objpfx)libgcc-stubs.a: $(objpfx)aeabi_unwind_cpp_pr1.os
|
|
+ $(build-extra-lib)
|
|
+
|
|
+lib-noranlib: $(objpfx)libgcc-stubs.a
|
|
endif
|
|
|
|
ifeq ($(subdir),csu)
|