Changeset 4ea5622
- Timestamp:
- May 23, 2011 4:52:29 AM (10 years ago)
- Branches:
- master
- Children:
- 7ab95d0
- Parents:
- 606300a
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
core/c/jbigi/mbuild-all.sh
r606300a r4ea5622 28 28 # Are there any other X86 platforms that work on i2p? Add them here. 29 29 # 30 # Oddly athlon64 builds.... I wonder what others can :-) 31 # 32 X86_PLATFORMS="pentium pentiummmx pentium2 pentium3 pentiumm pentium4 k6 k62 k63 athlon core2 corei athlon64 geode atom nano viac3 viac32" 30 31 # Note! these build on 32bit as 32bit when operating as 32bit... 32 X86_64_PLATFORMS="atom athlon64 core2 corei nano pentium4" 33 34 # Note! these are 32bit _ONLY_ 35 X86_PLATFORMS="pentium pentiummmx pentium2 pentium3 pentiumm k6 k62 k63 athlon geode viac3 viac32 ${X86_64_PLATFORMS}" 33 36 34 37 … … 56 59 echo "Building windows .dlls for all architectures";; 57 60 Linux*) 58 PLATFORM_LIST="${LINUX_PLATFORMS}"59 61 NAME="libjbigi" 60 62 TYPE="so" 63 PLATFORM_LIST="" 61 64 TARGET="-linux-" 62 echo "Building linux .sos for all architectures";; 65 arch=$(uname -m | cut -f1 -d" ") 66 case ${arch} in 67 i[3-6]86) 68 arch="x86";; 69 esac 70 case ${arch} in 71 x86_64) 72 PLATFORM_LIST="${X86_64_PLATFORMS}" 73 TARGET="-linux-X86_64-";; 74 ia64) 75 PLATFORM_LIST="${X86_64_PLATFORMS}" 76 TARGET="-linux-ia64-";; 77 x86) 78 PLATFORM_LIST="${X86_PLATFORMS}" 79 TARGET="-linux-x86-";; 80 *) 81 PLATFORM_LIST="${LINUX_PLATFORMS}";; 82 esac 83 echo "Building ${TARGET} .so's for ${arch}";; 63 84 FreeBSD*) 64 85 PLATFORM_LIST="${FREEBSD_PLATFORMS}" -
core/c/mbuild.sh
r606300a r4ea5622 3 3 # Place latest gmp tarball in the jbigi dir, and exec this script. 4 4 5 JBIGI=../../../installer/lib/jbigi/jbigi.jar5 #JBIGI=../../../installer/lib/jbigi/jbigi.jar 6 6 7 if [ -f jbigi.jarx ] ; then8 JBIGI=../jbigi.jar9 fi7 #if [ -f jbigi.jarx ] ; then 8 #JBIGI=../jbigi.jar 9 #fi 10 10 11 (cd jcpuid ; sh build.sh ) 12 (cd jbigi ; sh mbuild-all.sh ) 11 rm -f t/* jcpuid/lib/freenet/support/CPUInformation/* jbigi/lib/net/i2p/util/* 12 13 ( cd jcpuid ; ./mbuild.sh ) 14 ( cd jbigi ; ./mbuild-all.sh ) 13 15 14 16 rm -Rf t … … 42 44 43 45 44 echo "jbigi.jar Refreshed."45 echo "raw files ar in t."46 echo "jbigi.jar created." 47 echo "raw files are in t." -
history.txt
r606300a r4ea5622 1 2011-05-23 sponge 2 * mbuild.sh fixups 3 * add new jcpuid/mbuild.sh -- pedantic naming 4 * jbigi/mbuild-all.sh -- pedantic naming 5 * see also http://zzz.i2p/topics/306?page=1#p3341 6 1 7 2011-05-22 zzz 2 8 * GeoIP: Read countries.txt in UTF-8
Note: See TracChangeset
for help on using the changeset viewer.