Google Web Toolkit (GWT)
Building from source
Creating Hello World GWT Application with Eclipse support : 2008-05-17
Create project folder and generate eclipse project file
mkdir ~/src/MyProject
cd ~/src/MyProject
projectCreator -eclipse MyProject
Create default application
cd ~/src/MyProject
applicationCreator -eclipse MyProject edu.ucdavis.gwt.client.MyApplication
Run Hello World GWT Application : 2008-05-17
Run OOTB created sample application
cd ~/src/MyProject
./MyApplication-shell
NOTES:
...
running the shell app, I get:
/home/sakai/stories/unorganized/gwt/bin/gwt-linux-0.0.0/libswt-pi-gtk-3235.so: /home/sakai/stories/unorganized/gwt/bin/gwt-linux-0.0.0/libswt-pi-gtk-3235.so: wrong ELF class: ELFCLASS32 (Possible cause: architecture word width mismatch)
The fix is of course to use 32 bit java rather than 64 bit. But is there a way to use 64 bit java?