public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in profiles/prefix/linux: make.defaults
@ 2011-01-28 20:51 Jeremy Olexa (darkside)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeremy Olexa (darkside) @ 2011-01-28 20:51 UTC (permalink / raw
  To: gentoo-commits

darkside    11/01/28 20:51:17

  Modified:             make.defaults
  Log:
  fix typo

Revision  Changes    Path
1.5                  profiles/prefix/linux/make.defaults

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?r1=1.4&r2=1.5

Index: make.defaults
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- make.defaults	12 Aug 2010 20:11:54 -0000	1.4
+++ make.defaults	28 Jan 2011 20:51:17 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.4 2010/08/12 20:11:54 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.5 2011/01/28 20:51:17 darkside Exp $
 
 # 'Sane' defaults
 ELIBC="glibc"
@@ -23,7 +23,7 @@
 # direction with how LDFLAGS will be set by default, this entry
 # may move.
 # 2010/08/12 - Fabian Groffen <grobian@gentoo.org>
-# Unlike default/prefix, we do NOT have --as-needed here, as it seems to
+# Unlike default/linux, we do NOT have --as-needed here, as it seems to
 # break a random amount of packages, that don't break (or just not
 # enough) for non-Prefix installs.
 LDFLAGS="-Wl,-O1"






^ permalink raw reply	[flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in profiles/prefix/linux: make.defaults
@ 2014-01-21  4:30 Ryan Hill (dirtyepic)
  0 siblings, 0 replies; 6+ messages in thread
From: Ryan Hill (dirtyepic) @ 2014-01-21  4:30 UTC (permalink / raw
  To: gentoo-commits

dirtyepic    14/01/21 04:30:29

  Modified:             make.defaults
  Log:
  Drop mudflap from default USE.

Revision  Changes    Path
1.7                  profiles/prefix/linux/make.defaults

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?r1=1.6&r2=1.7

Index: make.defaults
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- make.defaults	13 Feb 2011 16:53:40 -0000	1.6
+++ make.defaults	21 Jan 2014 04:30:29 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.6 2011/02/13 16:53:40 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.7 2014/01/21 04:30:29 dirtyepic Exp $
 
 # 'Sane' defaults
 ELIBC="glibc"
@@ -10,8 +10,8 @@
 # on glibc system you cannot turn it off
 USE="iconv"
 
-# build gcc with mudflap (pointer checking) and parallelization support
-USE="${USE} mudflap openmp"
+# build gcc with parallelization support
+USE="${USE} openmp"
 
 # Turn off acl to help with bootstrapping - it isn't as helpful for prefix as it
 # can be for a non-prefix install





^ permalink raw reply	[flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in profiles/prefix/linux: make.defaults
@ 2011-02-13 16:53 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 6+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2011-02-13 16:53 UTC (permalink / raw
  To: gentoo-commits

arfrever    11/02/13 16:53:40

  Modified:             make.defaults
  Log:
  Don't include ${USE} in the first assignment to USE in make.defaults files to avoid incorrect interactions between enabled and disabled flags in different files.

Revision  Changes    Path
1.6                  profiles/prefix/linux/make.defaults

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?r1=1.5&r2=1.6

Index: make.defaults
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- make.defaults	28 Jan 2011 20:51:17 -0000	1.5
+++ make.defaults	13 Feb 2011 16:53:40 -0000	1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.5 2011/01/28 20:51:17 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.6 2011/02/13 16:53:40 arfrever Exp $
 
 # 'Sane' defaults
 ELIBC="glibc"
@@ -8,7 +8,7 @@
 
 # 2006/10/28 - Luca Barbato <lu_zero@gentoo.org>
 # on glibc system you cannot turn it off
-USE="${USE} iconv"
+USE="iconv"
 
 # build gcc with mudflap (pointer checking) and parallelization support
 USE="${USE} mudflap openmp"






^ permalink raw reply	[flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in profiles/prefix/linux: make.defaults
@ 2010-08-12 20:11 Fabian Groffen (grobian)
  0 siblings, 0 replies; 6+ messages in thread
From: Fabian Groffen (grobian) @ 2010-08-12 20:11 UTC (permalink / raw
  To: gentoo-commits

grobian     10/08/12 20:11:54

  Modified:             make.defaults
  Log:
  Drop --as-needed from LDFLAGS, since it obviously is not ready to be enabled globally judging by our bug-flow.

Revision  Changes    Path
1.4                  profiles/prefix/linux/make.defaults

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/prefix/linux/make.defaults?r1=1.3&r2=1.4

Index: make.defaults
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- make.defaults	30 Dec 2009 19:15:33 -0000	1.3
+++ make.defaults	12 Aug 2010 20:11:54 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.3 2009/12/30 19:15:33 abcd Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.4 2010/08/12 20:11:54 grobian Exp $
 
 # 'Sane' defaults
 ELIBC="glibc"
@@ -16,3 +16,15 @@
 # Turn off acl to help with bootstrapping - it isn't as helpful for prefix as it
 # can be for a non-prefix install
 USE="${USE} -acl"
+
+# 2008/07/09 - Doug Goldstein <cardoe@gentoo.org>
+# Adding LDFLAGS="-Wl,-O1 for all Linux profiles by default
+# after discussion on the gentoo-dev ML. As we bang out a clear
+# direction with how LDFLAGS will be set by default, this entry
+# may move.
+# 2010/08/12 - Fabian Groffen <grobian@gentoo.org>
+# Unlike default/prefix, we do NOT have --as-needed here, as it seems to
+# break a random amount of packages, that don't break (or just not
+# enough) for non-Prefix installs.
+LDFLAGS="-Wl,-O1"
+






^ permalink raw reply	[flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in profiles/prefix/linux: make.defaults
@ 2009-12-30 19:15 Jonathan Callen (abcd)
  0 siblings, 0 replies; 6+ messages in thread
From: Jonathan Callen (abcd) @ 2009-12-30 19:15 UTC (permalink / raw
  To: gentoo-commits

abcd        09/12/30 19:15:33

  Modified:             make.defaults
  Log:
  Disable acl by default in linux profiles

Revision  Changes    Path
1.3                  profiles/prefix/linux/make.defaults

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/prefix/linux/make.defaults?r1=1.2&r2=1.3

Index: make.defaults
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- make.defaults	30 Jun 2009 16:39:18 -0000	1.2
+++ make.defaults	30 Dec 2009 19:15:33 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.2 2009/06/30 16:39:18 darkside Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.3 2009/12/30 19:15:33 abcd Exp $
 
 # 'Sane' defaults
 ELIBC="glibc"
@@ -12,3 +12,7 @@
 
 # build gcc with mudflap (pointer checking) and parallelization support
 USE="${USE} mudflap openmp"
+
+# Turn off acl to help with bootstrapping - it isn't as helpful for prefix as it
+# can be for a non-prefix install
+USE="${USE} -acl"






^ permalink raw reply	[flat|nested] 6+ messages in thread
* [gentoo-commits] gentoo-x86 commit in profiles/prefix/linux: make.defaults
@ 2009-06-30 16:39 Jeremy Olexa (darkside)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeremy Olexa (darkside) @ 2009-06-30 16:39 UTC (permalink / raw
  To: gentoo-commits

darkside    09/06/30 16:39:18

  Modified:             make.defaults
  Log:
  Remove sandbox being enabled by default on linux prefix platforms, users can still enable themselves if wanted

Revision  Changes    Path
1.2                  profiles/prefix/linux/make.defaults

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/prefix/linux/make.defaults?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/profiles/prefix/linux/make.defaults?r1=1.1&r2=1.2

Index: make.defaults
===================================================================
RCS file: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- make.defaults	6 Jun 2009 03:54:55 -0000	1.1
+++ make.defaults	30 Jun 2009 16:39:18 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.1 2009/06/06 03:54:55 solar Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/linux/make.defaults,v 1.2 2009/06/30 16:39:18 darkside Exp $
 
 # 'Sane' defaults
 ELIBC="glibc"
@@ -12,6 +12,3 @@
 
 # build gcc with mudflap (pointer checking) and parallelization support
 USE="${USE} mudflap openmp"
-
-# Linux has sandbox support
-FEATURES="sandbox"






^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-01-21  4:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-28 20:51 [gentoo-commits] gentoo-x86 commit in profiles/prefix/linux: make.defaults Jeremy Olexa (darkside)
  -- strict thread matches above, loose matches on Subject: below --
2014-01-21  4:30 Ryan Hill (dirtyepic)
2011-02-13 16:53 Arfrever Frehtes Taifersar Arahesis (arfrever)
2010-08-12 20:11 Fabian Groffen (grobian)
2009-12-30 19:15 Jonathan Callen (abcd)
2009-06-30 16:39 Jeremy Olexa (darkside)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox