Hi,
By defaut, under linux 64bit, you can not run jmule due to SWT library being for 32bit system.
Can we add 64 bit library
http://maven.eclipse.org/nexus/content/ ... _64/3.6.2/ to lib/swt-linux/ and add a modification to the jmule.sh script so that it looks like :
Code:
#!/bin/bash
if [[ `uname -i` == "x86_64" ]]
then java -Xmx128m -cp lib/swt-linux/org.eclipse.swt.gtk.linux.x86_64-3.6.2.jar:lib/swingx-0.9.3.jar:jmule.jar:. org.jmule.main.Main
else java -Xmx128m -cp lib/swt-linux/swt.jar:lib/swingx-0.9.3.jar:jmule.jar:. org.jmule.main.Main
fi
What do you think?
t.