X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=README;h=e3ca5528542d7f454322afb718cec86003edbd8a;hp=f2d9d644adb59e507b8ab957a95a0ffc0e4412cf;hb=96ea01148ebad132c9b3ba20380652e49a75d8df;hpb=9ec1b53622082de5a64775a38558cc7777280aaf diff --git a/README b/README index f2d9d64..e3ca552 100644 --- a/README +++ b/README @@ -95,7 +95,7 @@ The name of any class in org.xwt.plat is a valid ; here is a list as of 20-Mar-2002: Win32 - Windows 95 / NT4 or later - Java2 - Any Java 1.2+ compliant JVM + Java12 - Any Java 1.2+ compliant JVM Valid s are: @@ -195,6 +195,26 @@ Building ______________________________________________________________________________ +Native-Code "ant" + +** THIS DOESN'T WORK YET ** + +Ant takes a long time to start up, mainly because it has to load a +JVM. If you compile ant to native code using GCJ, it will load much +more quickly. So far, this only works on Linux. + + mkdir /tmp/ant + cd /tmp/ant + jar xvf ~/xwt/lib/ant.jar + for A in `find * -name \*.properties -or -name \*.txt -or -name \*.mf` + do gcj -c --resource $A $A -o $A.o + done + CLASSPATH= gcj --main=org.apache.tools.ant.Main \ + `find . -name \*.class -or -name \*.o` -o ant + mv ant ~/xwt/ant + + +______________________________________________________________________________ inet_addr patch Index: java/net/natInetAddress.cc