Added chost/cflags/cxxflags/ldflags to example spec template.
authorChris Gianelloni <wolf31o2@gentoo.org>
Fri, 2 Dec 2005 21:59:46 +0000 (21:59 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Fri, 2 Dec 2005 21:59:46 +0000 (21:59 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@934 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
examples/generic_stage_template.spec

index 73ef66109e5461dc4d6714b7c8d8d1dc6a4c9890..52a4f48c0f69d4478d431a7ffd440381b88e3a15 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.421 2005/12/02 21:39:37 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.422 2005/12/02 21:59:46 wolf31o2 Exp $
+
+  02 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
+  examples/generic_stage_template.spec:
+  Added chost/cflags/cxxflags/ldflags to example spec template.
 
   02 Dec 2005; Chris Gianelloni <wolf31o2@gentoo.org>
   targets/support/rc-update.sh:
index 4a15ddcc6e97aac7ef480f63426017dffc6abb61..10b7851d844fd2047a737092921e0ed9e92b1f09 100644 (file)
@@ -58,3 +58,32 @@ distcc_hosts:
 # example:
 # portage_confdir: /etc/portage
 portage_confdir:
+
+# These options are only available when building a stage1 target and are all
+# optional.
+
+# This option is used to change the CHOST from what is default in the profile
+# to whatever you specify.  This is useful for building NPTL, for example.
+# example:
+# chost: i686-pc-linux-gnu
+chost:
+
+# This option allows you to change the default CFLAGS that will be used in
+# building this stage.  This really should remain generic, as putting
+# optimizations flags here will build a stage1 tarball that is no longer
+# generic.
+# example:
+# cflags: -Os -pipe -fomit-frame-pointer -mcpu=i686
+cflags:
+
+# This is for setting the CXXFLAGS.  Generally, this would be set to the same
+# as CFLAGS.  In fact, it will mirror CFLAGS by default.
+# example:
+# cxxflags: -Os -pipe -fomit-frame-pointer -mcpu=i686
+cxxflags:
+
+# Setting this option sets LDFLAGS in make.conf in your stage.  This would be
+# useful for setting up an embedded or hardened system.
+# example:
+# ldflags: -Wl,-O1 -Wl,-z,now
+ldflags: