forked from I2P_Developers/i2p.i2p
2005-09-18 jrandom
* Added support for pure 64bit linux with jbigi and the java service
wrapper (no need for jcpuid if we're on os.arch=amd64). Thanks mule
et al for help testing!
* UI cleanup in Syndie (thanks gloin and bar!)
This commit is contained in:
@@ -5,3 +5,7 @@ was optimized for a variety of CPU architectures.
|
||||
|
||||
On Sep 16, 2005, libjbigi-osx-none.jnilib was added to jbigi.jar after
|
||||
being compiled by jrandom on osx/ppc with GMP-4.1.4.
|
||||
|
||||
On Sep 18, 2005, libjbigi-linux-athlon64.so was added to jbigi.jar after
|
||||
being compiled by jrandom on linux/p4 (cross compiled to --host=x86_64)
|
||||
with GMP-4.1.4.
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
installer/lib/wrapper/linux64/i2psvc
Normal file
BIN
installer/lib/wrapper/linux64/i2psvc
Normal file
Binary file not shown.
BIN
installer/lib/wrapper/linux64/libwrapper.so
Normal file
BIN
installer/lib/wrapper/linux64/libwrapper.so
Normal file
Binary file not shown.
BIN
installer/lib/wrapper/linux64/wrapper.jar
Normal file
BIN
installer/lib/wrapper/linux64/wrapper.jar
Normal file
Binary file not shown.
@@ -31,10 +31,18 @@ if [ "X$HOST_OS" = "X" -o $HOST_OS = "unknown" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
OS_ARCH=`uname -m`
|
||||
X86_64=`echo "$OS_ARCH" | grep x86_64`
|
||||
|
||||
case $HOST_OS in
|
||||
debian | fedora | gentoo | linux | mandrake | redhat | suse )
|
||||
wrapperpath="./lib/wrapper/linux"
|
||||
cp $wrapperpath/libwrapper.so ./lib/
|
||||
if [ "X$X86_64" = "X" ]; then
|
||||
wrapperpath="./lib/wrapper/linux"
|
||||
cp $wrapperpath/libwrapper.so ./lib/
|
||||
else
|
||||
wrapperpath="./lib/wrapper/linux64"
|
||||
cp $wrapperpath/libwrapper.so ./lib
|
||||
fi
|
||||
;;
|
||||
freebsd )
|
||||
wrapperpath="./lib/wrapper/freebsd"
|
||||
|
||||
Reference in New Issue
Block a user