1# Copyright (C) 2006-2016 Free Software Foundation, Inc.
2#
3# This file is part of GCC.
4#
5# GCC is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 3, or (at your option)
8# any later version.
9#
10# GCC is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with GCC; see the file COPYING3.  If not see
17# <http://www.gnu.org/licenses/>.
18
19# GP-rel: G0 only
20#
21# Endianness: EB or EL
22#
23# ABIs: mabi=32
24#	mabi=o64
25#	mabi=o64/mlong64
26#
27# FPU: (default mhard-float)
28#      msoft-float (only for mabi=32)
29#
30
31MULTILIB_EXTRA_OPTS = G0
32
33MULTILIB_OPTIONS =			\
34	EB/EL				\
35	mabi=32/mabi=o64		\
36	mips32/mips64                   \
37	mlong64/msoft-float		\
38
39MULTILIB_DIRNAMES =			\
40	eb el				\
41	o32 o64				\
42	mips32 mips64			\
43	long64 soft-float		\
44
45MULTILIB_MATCHES =			\
46	EB=meb EL=mel			\
47
48MULTILIB_EXCEPTIONS =			\
49        *mabi=32/*mlong64*		\
50
51MULTILIB_EXCLUSIONS =			\
52	mips32/!mabi=32                 \
53	mabi=32/!mips32			\
54	msoft-float/!mabi=32		\
55
56# Small multilib list for quick builds and tests.
57# Must either comment out everything above these lines, or everything below
58# these lines.
59
60#MULTILIB_OPTIONS = EB/EL msoft-float
61#MULTILIB_DIRNAMES = eb el soft-float
62#MULTILIB_MATCHES = EB=meb EL=mel
63