This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: testsuite problem: warning: `-no-install' is ignored for i686-pc-cygwin
- From: Tom Tromey <tromey at redhat dot com>
- To: "Billinghurst, David (CRTS)" <David dot Billinghurst at riotinto dot com>
- Cc: <java at gcc dot gnu dot org>
- Date: 03 May 2002 14:33:22 -0600
- Subject: Re: testsuite problem: warning: `-no-install' is ignored for i686-pc-cygwin
- References: <FAC87D7C874EAB46A847604DA4FD5A6402F81B@crtsmail.corp.riotinto.org>
- Reply-to: tromey at redhat dot com
>>>>> "David" == Billinghurst, David (CRTS) <David.Billinghurst@riotinto.com> writes:
David> Following up on my cygwin testsuite post, the compilation tests
David> fail because libtool issues warnings
David> libtool: link: warning: `-no-install' is ignored for i686-pc-cygwin
David> libtool: link: warning: assuming `-no-fast-install' instead
David> It would be better to fix the testsuite flags. Ideas welcome.
Here's the code:
# Avoid libtool wrapper scripts when possible.
if {$mode == "link"} {
lappend args "additional_flags=-no-install"
}
What if we change this to avoid the append when the target is some
Windows variant, including Cygwin?
Tom