This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Testing multilibs
- To: "Billinghurst, David (RTD)" <David dot Billinghurst at riotinto dot com dot au>, "'egcs at cygnus dot com'" <egcs at cygnus dot com>
- Subject: Re: Testing multilibs
- From: Robert Lipe <robertl at dgii dot com>
- Date: Sat, 24 Oct 1998 22:34:34 -0500
- References: <59A91793A168D2118E0A0000F802ED31012B98@ATMMAIL.atmdns>
Billinghurst, David (RTD) wrote:
> How do I run the egcs testsuites on Irix6.2 with the -mabi=64 flag
> Tried a few things but failed.
http://egcs.cygnus.com/faq.html#testoptions
If you want to test the default AND this flag in a single command,
effectively running every test once with and once without this option, I
think a command like:
make check RUNTESTFLAGS="'--target_board unix{-mabi=64,}'"
would probably do it.
The "trailing" comma in the above is important. It means run it once with
the flags before the comma (the obvious one) and once with the flags after
the comma (no flags).
RJL