blob: 9fb12d4cff82b763f70eac79d1f64f3fb2de1d76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/profiles/default-linux/amd64/2004.3/make.defaults,v 1.2 2004/09/09 07:07:25 lv Exp $
#
# System-wide defaults for the Portage system
# See portage(5) manpage
ARCH="amd64"
ACCEPT_KEYWORDS="${ARCH}"
# GCC 3.4.2 has multilib enabled by default, but we still need multilib in USE
# for compatibility
GRP_STAGE23_USE="${ARCH} ipv6 pam tcpd readline nls ssl gpm perl python berkdb acl ncurses multilib readline zlib erandom -java -nptl"
# Sane, functional, almost-but-not-quite-minimal default for USE
USE="${GRP_STAGE23_USE} oss alsa crypt jpeg nls userlocales opengl png xml2 acpi gif jp2 lzw lzw-tiff png tiff truetype usb xpm xprint xrandr xv"
# unfortunately, gcc doesnt provide us with an -march=x86_64.
CFLAGS="-O2 -pipe -march=k8"
CXXFLAGS="${CFLAGS}"
ARCH="amd64"
CHOST="x86_64-pc-linux-gnu"
# currently theoretical multilib stuff only available if using portage 2.0.51
CHOST32="i686-pc-linux-gnu"
CONF_MULTILIBDIR="lib32"
# until everything in the tree understands $(get_libdir), the only sane
# default for this is lib.
CONF_LIBDIR="lib"
ARCH_WRAPPER="linux32"
CC32="gcc32"
CPP32="g++32"
# we can enable sandbox now that we use multilib by default
FEATURES="sandbox"
|