This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Rexx to native compilation
- From: Øyvind Harboe <oyvind dot harboe at zylin dot com>
- To: <java at gcc dot gnu dot org>
- Date: Tue, 11 Mar 2003 20:23:23 +0100
- Subject: Rexx to native compilation
For fun(the things I do for fun), I tried to compile
a Rexx program to Java and then to native w/GCJ.
See http://www.rexx2nrx.com
It seems there are a number of scripting languages that use
Java bytecode, Rexx is just one of them.
Didn't work, but I thought I'd post a little something
on it anyway.
C:\temp\rexx> \thisiscool-gcc\gcc-3.3\bin\gcj --main=qtsmall ..\netrexx\lib\NetRexxC.jar qtsmall.class
RxFileReader.nrx: In class `COM.ibm.netrexx.process.RxFileReader':
RxFileReader.nrx: In method `COM.ibm.netrexx.process.RxFileReader.getLine(int)':
RxFileReader.nrx:201: error: cannot find file for class sun.io.MalformedInputException
Øyvind