This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: [gcj-eclipse-merge-branch] fix cross-build configury/makery
- From: Tom Tromey <tromey at redhat dot com>
- To: gnustuff at thisiscool dot com
- Cc: Adam Megacz <adam at megacz dot com>, java-patches at gcc dot gnu dot org
- Date: 06 Dec 2006 20:19:51 -0700
- Subject: Re: [gcj-eclipse-merge-branch] fix cross-build configury/makery
- References: <4W547487SNQRLDWS08WUP75NMNI.45778563@d9300>
- Reply-to: tromey at redhat dot com
>>>>> "Mohan" == Mohan Embar <gnustuff@thisiscool.com> writes:
Mohan> It won't run on Windows because:the argument to -fbootclasspath
Mohan> passed to jc1 and ecj1 can have spaces in it, which isn't being
Mohan> quoted properly and because we unconditionally use ":" instead
Mohan> of the system path separator to separate classpath entries.
Mohan> I'll dig into this but if anyone's listening right now and can
Mohan> tell me offhand where this is happening, I'd be grateful.
gcc/java/jvspec.c:lang_specific_driver()
This munges the command line arguments a little before specs
processing.
Tom