This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Multilibs - how to avoid building the default one twice
- From: "Zack Weinberg" <zack at codesourcery dot com>
- To: gcc at gcc dot gnu dot org
- Date: Mon, 23 Feb 2004 13:32:47 -0800
- Subject: Multilibs - how to avoid building the default one twice
The ia64-hpux target builds 32- and 64-bit multilibs. These
correspond to the -milp32 and -mlp64 command line switches, and so
there is
MULTILIB_OPTIONS = milp32/mlp64
in config/ia64/t-hpux.
Now, the default for this target is -milp32 (i.e. if neither option is
specified, that's what you get). Yet we build separate libraries for
the no-options case. Is there any way to avoid that? I tried
MULTILIB_MATCHES = milp32=
but it doesn't have any effect.
zw