finished scripts to automate static tor builds for x86 and arm; new static tor 0.3.5.3-alpha for both

This commit is contained in:
Dan Ballard 2018-10-27 16:54:48 -07:00
parent 7a1e509985
commit 8eefcf843e
6 changed files with 41 additions and 43 deletions

View File

@ -1,10 +1,10 @@
#!/bin/sh
BUILD_DIR=${PWD}/build-tor
BUILD_DIR=${PWD}/build-tor-arm
ZLIB_VERSION=1.2.11
LIBEVENT_VERSION=2.1.8-stable
OPENSSL_VERSION=1.0.2p
TOR_VERSION=0.3.5.2-alpha
TOR_VERSION=0.3.5.3-alpha
mkdir ${BUILD_DIR}
cd ${BUILD_DIR}
@ -23,29 +23,27 @@ cd libevent-${LIBEVENT_VERSION}
--enable-static \
--with-pic \
--host=arm-linux-gnueabihf
make -j$(nproc)
make install
make -j$(nproc)
make install
cd ..
curl -fsSL "https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz" | tar zxvf -
cd openssl-${OPENSSL_VERSION}
export ANDROID_NDK_HOME="${BUILD_DIR}/ndk"
./Configure --openssldir=$PWD/install no-shared no-dso android-armv7
cd openssl-${OPENSSL_VERSION}
./Configure --openssldir=$PWD/install no-shared no-dso linux-armv4
make -j$(nproc) INSTALL_PREFIX=$PWD/install
make install
make install
cd ..
curl -fsSL "https://www.torproject.org/dist/tor-${TOR_VERSION}.tar.gz" | tar zxvf -
cd tor-${TOR_VERSION}
curl -fsSL "https://www.torproject.org/dist/tor-${TOR_VERSION}.tar.gz" | tar zxvf -
cd tor-${TOR_VERSION}
./configure --prefix=$PWD/install \
--enable-static-tor \
--with-libevent-dir=$PWD/../libevent-${LIBEVENT_VERSION}/install \
--with-openssl-dir=$PWD/../openssl-${OPENSSL_VERSION}/install \
--with-zlib-dir=$PWD/../zlib-${ZLIB_VERSION}/install \
--host=arm-linux-gnueabihf \
CC=arm-linux-gnueabihf-gcc \
AR=arm-linux-gnueabihf-ar STRIP=arm-linux-gnueabihf-strip RANLIB=arm-linux-gnueabihf-ranlib
make -j$(nproc)
--host=armv7-unknown-linux-gnueabi \
--disable-tool-name-check
make -j$(nproc)
make install
echo ""

0
tor/build-tor-cross-arm.sh Normal file → Executable file
View File

View File

@ -1,47 +1,47 @@
#!/bin/sh
BUILD_DIR=build-tor
BUILD_DIR=${PWD}/build-tor-x86
ZLIB_VERSION=1.2.11
LIBEVENT_VERSION=2.1.8-stable
OPENSSL_VERSION=1.0.2p
TOR_VERSION=0.3.5.2-alpha
TOR_VERSION=0.3.5.3-alpha
mkdir ${BUILD_DIR} \
&& cd ${BUILD_DIR}
mkdir ${BUILD_DIR}
cd ${BUILD_DIR}
curl -fsSL "https://zlib.net/zlib-${ZLIB_VERSION}.tar.gz" | tar zxvf - \
&& cd zlib-${ZLIB_VERSION} \
&& ./configure --prefix=$PWD/install \
&& make -j$(nproc) \
&& make install \
&& cd ..
curl -fsSL "https://zlib.net/zlib-${ZLIB_VERSION}.tar.gz" | tar zxvf -
cd zlib-${ZLIB_VERSION}
./configure --prefix=$PWD/install
make -j$(nproc)
make install
cd ..
curl -fsSL "https://github.com/libevent/libevent/releases/download/release-${LIBEVENT_VERSION}/libevent-${LIBEVENT_VERSION}.tar.gz" | tar zxvf - \
&& cd libevent-${LIBEVENT_VERSION} \
&& ./configure --prefix=$PWD/install \
curl -fsSL "https://github.com/libevent/libevent/releases/download/release-${LIBEVENT_VERSION}/libevent-${LIBEVENT_VERSION}.tar.gz" | tar zxvf -
cd libevent-${LIBEVENT_VERSION}
./configure --prefix=$PWD/install \
--disable-shared \
--enable-static \
--with-pic \
&& make -j$(nproc) \
&& make install \
&& cd ..
--with-pic
make -j$(nproc)
make install
cd ..
curl -fsSL "https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz" | tar zxvf - \
&& cd openssl-${OPENSSL_VERSION} \
&& ./config --prefix=$PWD/install no-shared no-dso \
&& make -j$(nproc) \
&& make install \
&& cd ..
curl -fsSL "https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz" | tar zxvf -
cd openssl-${OPENSSL_VERSION}
./config --prefix=$PWD/install no-shared no-dso
make -j$(nproc)
make install
cd ..
curl -fsSL "https://www.torproject.org/dist/tor-${TOR_VERSION}.tar.gz" | tar zxvf - \
&& cd tor-${TOR_VERSION} \
&& ./configure --prefix=$PWD/install \
curl -fsSL "https://www.torproject.org/dist/tor-${TOR_VERSION}.tar.gz" | tar zxvf -
cd tor-${TOR_VERSION}
./configure --prefix=$PWD/install \
--enable-static-tor \
--with-libevent-dir=$PWD/../libevent-${LIBEVENT_VERSION}/install \
--with-openssl-dir=$PWD/../openssl-${OPENSSL_VERSION}/install \
--with-zlib-dir=$PWD/../zlib-${ZLIB_VERSION}/install \
&& make -j$(nproc) \
&& make install
--with-zlib-dir=$PWD/../zlib-${ZLIB_VERSION}/install
make -j$(nproc)
make install
echo ""
echo "Results in ${BUILD_DIR}/tor-${TOR_VERSION}/install/bin"

BIN
tor/tor

Binary file not shown.

BIN
tor/tor-0.3.5.3-alpha.arm Executable file

Binary file not shown.

BIN
tor/tor-0.3.5.3-alpha.x86 Executable file

Binary file not shown.