blob: 3ac2c08bd20c2353836eb66b63e3b3865afbcaa4 (
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
|
# Copyright 2004 Gentoo Foundation.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/profiles/default-linux/mips/mips64/n32/2004.2/make.defaults,v 1.9 2004/11/08 00:22:08 lv Exp $
ARCH="mips"
# This is ugly and evil. hopefully to be removed... soon. replaced by
# STAGE1_USE in bootstrap-cascade.sh
ABI="n32"
# n32 is a type of 32bit userland that can only be built with
# a 64bit compiler, thus we technically use a 64bit userland.
CHOST="mips64-unknown-linux-gnu"
# Used in ebuilds for verifying mips64 profile
PROFILE_ARCH="mips64"
# Sandbox is broken on mips (Bug #45814)
FEATURES="-sandbox ccache autoconfig"
# Compiler flags
# We build a *minimum* of mips3, because just about any mips64 box we theoretically
# support should meet the mips3 standard. This is also the n32 profile, so set
# the default build ABI to n32
CFLAGS="-O2 -pipe -march=mips3 -mabi=n32"
CXXFLAGS=${CFLAGS}
# There is no "stable" n32 support yet. It's aaaalllll experimental
ACCEPT_KEYWORDS="mips ~mips"
STAGE1_USE="n32"
USE="${STAGE1_USE} readline fortran f77 gpm berkdb gdbm tcpd pam crypt libwww ssl nls perl python sdl mips -multilib nomultilib"
GRP_STAGE23_USE="${STAGE1_USE} readline gpm berkdb gdbm tcpd pam crypt libwww ssl nls perl python sdl mips -multilib nomultilib"
|