This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
PATH_SEPARATOR not platform independent
- From: Marco Trudel <mtrudel at gmx dot ch>
- To: GCJ <java at gcc dot gnu dot org>
- Date: Sun, 08 Oct 2006 21:53:10 +0200
- Subject: PATH_SEPARATOR not platform independent
I found the problem why -Djava.library.path doesn't work for win32:
prims.cc uses "PATH_SEPARATOR" which is always set to ":". Thus it works
only for linux.
I now don't know where PATH_SEPARATOR comes from. I assumed that it's
comimg from gcc/system.h. But adapting it didn't help.
If someone tells me where it comes from, I'll write a patch.
Marco