blob: d178ceab37659a50f7c3cde3f6645930e05c165c (
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-2015 Gentoo Foundation.
# Distributed under the terms of the GNU General Public License v2
# $Id$
ARCH="amd64"
ACCEPT_KEYWORDS="${ARCH}"
CHOST="x86_64-gentoo-linux-musl"
CFLAGS="-O2 -pipe"
CXXFLAGS="${CFLAGS}"
FFLAGS="${CFLAGS}"
FCFLAGS="${CFLAGS}"
# Anthony G. Basile <blueness@gentoo.org> (01 Jul 2014)
# Multilib-related setup, bug #515130
ABI="amd64"
DEFAULT_ABI="amd64"
MULTILIB_ABIS="amd64"
CHOST_amd64="${CHOST}"
LIBDIR_amd64="lib"
IUSE_IMPLICIT="abi_x86_64"
# Anthony G. Basile <blueness@gentoo.org> (31 Aug 2015)
# Relect these flags from arch/amd64 which we don't inherit
CPU_FLAGS_X86="mmx mmxext sse sse2"
# Anthony G. Basile <blueness@gentoo.org> (26 Jan 2013)
# Unhide the CPU_FLAGS_X86 USE_EXPANDs.
USE_EXPAND_HIDDEN="-CPU_FLAGS_X86"
|