blob: d19fd1b44b28b83948c93ef141ef229abe6bf9df (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/profiles/default-linux/mips/cobalt/2006.0/make.defaults,v 1.4 2006/03/14 14:55:32 wolf31o2 Exp $
ARCH="mips"
# cobalt is a little endian, 32bit-only system
CHOST="mipsel-unknown-linux-gnu"
# Distinguish cobalt from other mips profiles
PROFILE_ARCH="cobalt"
# Sandbox is broken on mips (Bug #45814)
FEATURES="-sandbox ccache autoconfig"
# Compiler flags
# We build mips4 by default because all cobalt systems use an RM5231 (or derivative)
# CPU, which is in the R5000-class and is thus mips4 capable. We also force the
# ABI to o32 because there is no mips64 support on cobalt (yet) and it therefore
# cannot run anything else.
CFLAGS="-O2 -pipe -march=mips4 -mabi=32"
CXXFLAGS=${CFLAGS}
ACCEPT_KEYWORDS="mips"
USE="readline gpm berkdb fortran gdbm tcpd pam libwww ssl nls perl python sdl cobalt -n32 -n64 -multilib nomultilib"
# These are added to make dev-lang/php behave properly. See bug #120088
USE="${USE} apache2 cli ctype dba expat fastbuild force-cgi-redirect ftp gd memlimit nls pcre posix session simplexml soap sockets spl ssl tokenizer truetype xml xsl zlib"
|