I want to compile a small Java application into a Windows executable.
The application is very small, only one main class, but uses Apache POI.
When I compile it, everything works fine, as long as I put the POI Jar in the class path argument.
But when it comes to references, GCJ cannot resolve class references in the POI package. All messages are as follows:
undefined reference tp 'org::apache::poi:hssf:usermodel:HSSFWorkbook::class$'
What do I need to do to link my application?
java linker gcj
Daniel Rikowski
source share