blob: 1d45d8e8ea5a5f007a55f7fcfde2de953f15853a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# 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/multilib-dev/lib64/make.defaults,v 1.1 2005/01/01 00:42:41 eradicator Exp $
# This isn't fully implemented in portage/toolchain, yet. See
# http://bugs.gentoo.org/show_bug.cgi?id=75420
# MULTILIB_ABIS lists all the ABIS you want to build for when
# you emerge a package. The libs that get installed will be for
# all of these ABIs, but the bins will be for ${DEFAULT_ABI}.
MULTILIB_ABIS="x86 amd64"
DEFAULT_ABI="amd64"
ARCH_WRAPPER_amd64="linux64"
CFLAGS_amd64="-m64"
LIBDIR_amd64="lib64"
ARCH_WRAPPER_x86="linux32"
CFLAGS_x86="-m32"
LIBDIR_x86="lib"
|