patches/glibc/2.3.6/310-_begin-missing.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 12 23:51:25 2010 +0200 (2010-09-12)
changeset 2123 ff2181adbd28
permissions -rw-r--r--
cc/gcc: disable complibs if not selected

Force gcc to not link with some companion libraries when
there are not needed (because selected-out).

There is no option to tell gcc *not* to build the Graphite and/or
LTO stuff. They *will* be built if gcc finds the suitable companion
libraries. If we do not provide them, but the host has them, then
gcc *will* find them, and link with them.

Consider the following:
- host has suitable PPL and CLooG (eg. Debian Squeeze)
- user wants to build gcc>=4.4
- user de-selects GRAPHITE
- gcc will find the hosts PPL and CLooG, and will use them
- the user moves the toolchain to an older host that does
not have them (eg. Debian Lenny)
- the toolchain fails, when it was properly setup not to

So, explicitly tell gcc *not* to use unneeded companion libs.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
lacombar@2068
     1
diff -ru glibc-2.3.6/elf/Makefile glibc-2.3.6.patched/elf/Makefile
lacombar@2068
     2
--- glibc-2.3.6/elf/Makefile	2010-05-02 18:58:38.000000000 -0400
lacombar@2068
     3
+++ glibc-2.3.6.patched/elf/Makefile	2010-05-02 18:54:54.000000000 -0400
lacombar@2068
     4
@@ -292,7 +292,7 @@
lacombar@2068
     5
 		  $(LDFLAGS-rtld) -Wl,-z,defs -Wl,--verbose 2>&1 |	\
lacombar@2068
     6
 		  LC_ALL=C \
lacombar@2068
     7
 		  sed -e '/^=========/,/^=========/!d;/^=========/d'	\
lacombar@2068
     8
-		      -e 's/\. = 0 + SIZEOF_HEADERS;/& _begin = . - SIZEOF_HEADERS;/' \
lacombar@2068
     9
+		      -e 's/\. = .* + SIZEOF_HEADERS;/& _begin = . - SIZEOF_HEADERS;/' \
lacombar@2068
    10
 		  > $@.lds
lacombar@2068
    11
 	$(LINK.o) -nostdlib -nostartfiles -shared -o $@			\
lacombar@2068
    12
 		  $(LDFLAGS-rtld) -Wl,-z,defs $(z-now-$(bind-now))	\