View previous topic :: View next topic |
Author |
Message |
Borosai n00b
Joined: 31 Jan 2004 Posts: 59
|
Posted: Tue May 30, 2006 10:14 pm Post subject: AMD64 Default Use Flags |
|
|
Could someone with a 64-bit installation be kind enough to post the default USE flags found in /etc/make.profile/make.defaults. I am preparing to install Gentoo again (first time as AMD64), and would like to know what's already there so I can modify /etc/make.conf properly without adding or removing too much. Thanks. |
|
Back to top |
|
|
speeddemon Apprentice
Joined: 27 Sep 2003 Posts: 162
|
Posted: Tue May 30, 2006 11:06 pm Post subject: |
|
|
Uh, when you untar the stage3 tarball, you will have a make.defaults. Look at it then.
Mine only has "ntpl -nptlonly" |
|
Back to top |
|
|
Borosai n00b
Joined: 31 Jan 2004 Posts: 59
|
Posted: Wed May 31, 2006 1:05 am Post subject: |
|
|
Thanks, but the thing is I am making my own little installation instructions, and I'm trying to get everything ironed out before the installation...it's just my preference I guess. And I hope that's not all that's in that file, or I'm going to have more problems later on
Thanks anyway. |
|
Back to top |
|
|
Xithix Apprentice
Joined: 31 Dec 2004 Posts: 228
|
Posted: Wed May 31, 2006 10:54 pm Post subject: |
|
|
Code: | $ cat /usr/portage/profiles/default-linux/amd64/2006.0/make.defaults |
Code: | # Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/profiles/default-linux/amd64/2006.0/make.defaults,v 1.15 2006/04/19 14:48:02 wolf31o2 Exp $
FEATURES="sandbox autoconfig"
MULTILIB_ABIS="x86 amd64"
DEFAULT_ABI="amd64"
ABI=${DEFAULT_ABI}
#CFLAGS_amd64="-m64"
#CXXFLAGS_amd64="${CXXFLAGS_amd64}"
#LDFLAGS_amd64="-m elf_x86_64"
CHOST_amd64="x86_64-pc-linux-gnu"
CDEFINE_amd64="__x86_64__"
LIBDIR_amd64="lib64"
# Added -L/emul* workaround to aid compilation of 32bit packages
# See bug #88725 for more info - Herbie Hopkins <herbs@gentoo.org> 2005/04/19
CFLAGS_x86="-m32 -L/emul/linux/x86/lib -L/emul/linux/x86/usr/lib"
CXXFLAGS_x86="${CXXFLAGS_amd64}"
LDFLAGS_x86="-m elf_i386 -L/emul/linux/x86/lib -L/emul/linux/x86/usr/lib"
CHOST_x86="i686-pc-linux-gnu"
CDEFINE_x86="__i386__"
LIBDIR_x86="lib32"
# In case someone wants to help out by setting FEATURES="multilib-strict"
MULTILIB_STRICT_DIRS="/lib /usr/lib /usr/kde/*/lib /usr/qt/*/lib /usr/X11R6/lib"
MULTILIB_STRICT_DENY="64-bit.*shared object"
MULTILIB_STRICT_EXEMPT="(perl5|gcc|gcc-lib|eclipse-3|debug|portage)"
# Hack to tell baselayout to use symlinks for /lib, /usr/lib, and /usr/local/lib
SYMLINK_LIB="yes"
# Switch to nptl, but no nptlonly yet.
USE="nptl -nptlonly"
| I would take this with a huge grain of salt. Look in the handbook or even /etc/make.conf.example for a much better starting point. |
|
Back to top |
|
|
|