patches/eglibc/ports-2_16/001-Avoid-use-of-libgcc_s-and-libgcc_eh-when-building-gl.patch
author Yann Diorcet <diorcet.yann@gmail.com>
Mon Nov 19 21:45:09 2012 +0100 (2012-11-19)
changeset 3121 5016315d88ba
permissions -rw-r--r--
binutils/binutils: simplify gold dependencies

In preparation of adding a new kernel-type, Yann D. came up
with a change in semantic on binutils/gold availability.

So far, it was architectures' responsibility to declare that
they did support binutils/gold or not. It makes much more sense
that binutils/gold declares its own availability depending on
the current architecture; after all, architectures have no way
to know wether gold supports them, while gold does know it.

Signed-off-by:Yann Diorcet <diorcet.yann@gmail.com>
[yann.morin.1998@free.fr: split up original patch for self-contained changes]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <d3d1d51f399e6d2c1163.1353320546@macbook-smorlat.local>
Patchwork-Id: 199971
graycells@3058
     1
Upstream-Status: Backport
graycells@3058
     2
Signed-off-by: Khem Raj <raj.khem@gmail.com>
graycells@3058
     3
graycells@3058
     4
From 95f5a9a866695da4e038aa4e6ccbbfd5d9cf63b7 Mon Sep 17 00:00:00 2001
graycells@3058
     5
From: Joseph Myers <joseph@codesourcery.com>
graycells@3058
     6
Date: Tue, 3 Jul 2012 19:14:59 +0000
graycells@3058
     7
Subject: [PATCH] Avoid use of libgcc_s and libgcc_eh when building glibc.
graycells@3058
     8
graycells@3058
     9
---
graycells@3058
    10
 ChangeLog                  |   47 ++++++++++++++++++++++++++++++
graycells@3058
    11
 Makeconfig                 |   68 ++++++++++++++++++++++++++++++++++++++------
graycells@3058
    12
 Rules                      |   45 ++++++++++++++++++++++-------
graycells@3058
    13
 elf/Makefile               |    6 +++-
graycells@3058
    14
 elf/static-stubs.c         |   46 ++++++++++++++++++++++++++++++
graycells@3058
    15
 ports/ChangeLog.arm        |    7 +++++
graycells@3058
    16
 ports/sysdeps/arm/Makefile |    8 ++++++
graycells@3058
    17
 7 files changed, 206 insertions(+), 21 deletions(-)
graycells@3058
    18
 create mode 100644 elf/static-stubs.c
graycells@3058
    19
graycells@3058
    20
-Index: a/ports/sysdeps/arm/Makefile
graycells@3058
    21
===================================================================
graycells@3058
    22
--- a/ports/sysdeps/arm/Makefile       2012-07-04 18:25:41.000000000 -0700
graycells@3058
    23
+++ b/ports/sysdeps/arm/Makefile       2012-08-14 20:16:10.201093638 -0700
graycells@3058
    24
@@ -1,8 +1,16 @@
graycells@3058
    25
+gnulib-arch = $(elfobjdir)/libgcc-stubs.a
graycells@3058
    26
+static-gnulib-arch = $(elfobjdir)/libgcc-stubs.a
graycells@3058
    27
+
graycells@3058
    28
 ifeq ($(subdir),elf)
graycells@3058
    29
 sysdep-dl-routines += tlsdesc dl-tlsdesc
graycells@3058
    30
 sysdep_routines += aeabi_unwind_cpp_pr1 find_exidx tlsdesc dl-tlsdesc
graycells@3058
    31
 sysdep-rtld-routines += aeabi_unwind_cpp_pr1 tlsdesc dl-tlsdesc
graycells@3058
    32
 shared-only-routines += aeabi_unwind_cpp_pr1
graycells@3058
    33
+
graycells@3058
    34
+$(objpfx)libgcc-stubs.a: $(objpfx)aeabi_unwind_cpp_pr1.os
graycells@3058
    35
+	$(build-extra-lib)
graycells@3058
    36
+
graycells@3058
    37
+lib-noranlib: $(objpfx)libgcc-stubs.a
graycells@3058
    38
 endif
graycells@3058
    39
graycells@3058
    40
 ifeq ($(subdir),csu)