forked from I2P_Developers/i2p.i2p

- Windows: Self-compiled with VS2010 in Windows 7. The icon has been changed from Tanuki's default to Itoopie. - Linux ARMv6: Compiled on a RaspberryPi using gcc 4.6.3-14+rpi1, Icedtea6 6b27-1.12.5-1+rpi1 and stripped - All other binaries are from the "community edition" deltapack offered by Tanuki.
25 lines
627 B
Plaintext
25 lines
627 B
Plaintext
Basic instructions for FreeBSD < 10
|
|
-----------------------------------
|
|
|
|
Prerequisites for compiling the wrapper can be installed with:
|
|
pkg_add -r apache-ant gmake openjdk7
|
|
|
|
One the prereqs are installed, cd into the wrapper source and run
|
|
|
|
For 32bit:
|
|
ant -Dbits=32 compile-c-unix
|
|
|
|
For 64bit:
|
|
ant -Dbits=64 compile-c-unix
|
|
|
|
Omit "compile-c-unix" from the command-lines if you want to compile
|
|
wrapper.jar too.
|
|
|
|
Then strip the binaries:
|
|
strip --strip-unneeded bin/wrapper lib/libwrapper.so
|
|
|
|
...and turn off the executable bit:
|
|
chmod 644 bin/wrapper lib/libwrapper.so
|
|
|
|
Don't forget to rename the binary "wrapper" to "i2psvc".
|