This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: IA64 Java build problem
- From: Tom Tromey <tromey at redhat dot com>
- To: Steve Ellcey <sje at cup dot hp dot com>
- Cc: java at gcc dot gnu dot org
- Date: Thu, 09 Aug 2007 11:56:18 -0600
- Subject: Re: IA64 Java build problem
- References: <200708091726.KAA20502@hpsje.cup.hp.com>
- Reply-to: tromey at redhat dot com
>>>>> "Steve" == Steve Ellcey <sje@cup.hp.com> writes:
Steve> In the libjava config.log I see:
Steve> configure:4329: checking for unzip
Steve> configure:4360: result: unzip
Steve> But I don't actually see an unzip anywhere on my Linux machine
Steve> so I am not sure how configure found one.
Apparently configure defaults to 'unzip' even if it doesn't find one:
AC_PATH_PROG([UNZIP], [unzip], unzip)
How odd.
Steve> Do I need zip/unzip even if I have fastjar?
I don't believe so, but it is hard to be sure. AFAICT unzip is only
used by the script implementation of jar in some cases.
If tools.zip looks ok then the next step, I think, would be to see
what jc1 is trying to read from tools.zip when it dies.
Tom