Re: SableVM 1.1.9 tarballs available
"Grzegorz B. Prokopski" <[email protected]> Thu, 20 Jan 2005 13:17:07 -0500
| Newsgroups | gmane.comp.java.vm.sablevm.devel |
|---|---|
| Organization | SableVM - LGPL'ed Free Java VM http://sablevm.org |
| Message-ID | <[email protected]> |
On Thu, 2005-20-01 at 10:57 -0500, Etienne Gagnon wrote: > Hi Greg, > > Good job! I've been able to run Eclipse using the following script. > Note that xalan & all are not used. :-) I wrote something more automated/friendly. You only give it java-sablevm and eclipse location, and it finds out the rest by itself. Attached, and I'll put it at http://sablevm.org/wiki/Eclipse once 1.1.9 is officially released. > Etienne > PS: There's a little nitpick, but please let it wait until 1.1.10. > There's still some .svn files in the distribution files. As I have > actually fixed this on top of the broken staging code, it will get into > the next version. I don't think it is worth fixing it now as the 1.1.9 > files are already built and signed. This is strange. I did try to 'find . -name \.svn' on unpacked tarballs... I must have been tired yesterday, because I can find them _now_. Anyway, this can wait. I think it's time for the announcement. Thanks for the help, GBP -- Grzegorz B. Prokopski <[email protected]> SableVM - Free, LGPL'ed Java VM http://sablevm.org Why SableVM ?!? http://sablevm.org/wiki/Features Debian GNU/Linux - the Free OS http://www.debian.org _______________________________________________ SableVM-devel mailing list [email protected] http://sablevm.org/lists/control/listinfo/sablevm-devel
runeclipse.sh
(application/x-shellscript, 873 B)
#!/bin/sh JAVA=/tmp/test/bin/java-sablevm ECLIPSE_HOME=/mnt/alpha/eclipse-runtimes/eclipse ######################################################################### # You should NOT need to modify anything below this line. # ######################################################################### if [ ! -x $JAVA -o ! -f $ECLIPSE_HOME/startup.jar ]; then echo "Error: 'java' command or Eclipse's startup.jar not found!" echo " JAVA=$JAVA" echo " ECLIPSE_HOME=$ECLIPSE_HOME" echo " Check the directories in $0 script and try again!" exit 1 fi JAVACMD="$JAVA -Dosgi.locking=none" for one in `find $ECLIPSE_HOME -name \*.so | sed 's/^\(.*\)\/[^\/]*$/\1/g' |sort|uniq`; do LD_LIBRARY_PATH="$LD_LIBRARY_PATH":$one done export LD_LIBRARY_PATH JAVACMD ECLIPSE_HOME JAVA exec $JAVACMD -jar $ECLIPSE_HOME/startup.jar -os linux -ws gtk -consolelog