# 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:
# 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: