[JGloss] Re: Compilation from source fails
Add readings and translations to Japanese text
Brought to you by:
tensberg
From: Michael K. <ten...@gm...> - 2004-03-21 17:20:48
|
> | leggewie@rolf /cygdrive/d/Quellcode/jgloss/jgloss-1.0.6 > | $ make jgloss > | javac -deprecation -d . -classpath ":./src" src/jgloss/JGloss.java src/jgloss/Ja > | vaPreferences.java src/jgloss/dictionary/GDict.java src/jgloss/dictionary/EDictN > | IO.java > ... > It appears that the compiler has trouble including the 'ui'-directory. > I do not know how to resolve this, though. I guess the problem is that javac, being compiled for Windows, expects DOS pathname conventions for the -classpath option, while the cygwin environment supplies UNIX-style paths. You could hack the MAKEFILE to either manually set the classpath to ".\src" or use the the cygwin-included function to convert UNIX to DOS pathnames (I think it is called "cygpath"). Alternatively, you could search for a Java compiler built for cygwin (perhaps the jikes compiler is ported?). I am currently experimenting with porting the build script to ant, which would allow truly platform independend builds. Michael Koch JGloss programmer |