Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in profiles/prefix/linux: make.defaults
Date: Thu, 12 Aug 2010 20:11:58
Message-Id: 20100812201155.170FB2CF37@corvid.gentoo.org
1 grobian 10/08/12 20:11:54
2
3 Modified: make.defaults
4 Log:
5 Drop --as-needed from LDFLAGS, since it obviously is not ready to be enabled globally judging by our bug-flow.
6
7 Revision Changes Path
8 1.4 profiles/prefix/linux/make.defaults
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.4&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.4&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?r1=1.3&r2=1.4
13
14 Index: make.defaults
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v
17 retrieving revision 1.3
18 retrieving revision 1.4
19 diff -u -r1.3 -r1.4
20 --- make.defaults 30 Dec 2009 19:15:33 -0000 1.3
21 +++ make.defaults 12 Aug 2010 20:11:54 -0000 1.4
22 @@ -1,6 +1,6 @@
23 -# Copyright 1999-2009 Gentoo Foundation
24 +# Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.3 2009/12/30 19:15:33 abcd Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.4 2010/08/12 20:11:54 grobian Exp $
28
29 # 'Sane' defaults
30 ELIBC="glibc"
31 @@ -16,3 +16,15 @@
32 # Turn off acl to help with bootstrapping - it isn't as helpful for prefix as it
33 # can be for a non-prefix install
34 USE="${USE} -acl"
35 +
36 +# 2008/07/09 - Doug Goldstein <cardoe@g.o>
37 +# Adding LDFLAGS="-Wl,-O1 for all Linux profiles by default
38 +# after discussion on the gentoo-dev ML. As we bang out a clear
39 +# direction with how LDFLAGS will be set by default, this entry
40 +# may move.
41 +# 2010/08/12 - Fabian Groffen <grobian@g.o>
42 +# Unlike default/prefix, we do NOT have --as-needed here, as it seems to
43 +# break a random amount of packages, that don't break (or just not
44 +# enough) for non-Prefix installs.
45 +LDFLAGS="-Wl,-O1"
46 +