mirror of
https://github.com/deneraraujo/OpenVPNAdapter.git
synced 2026-02-11 00:00:08 +08:00
Squashed 'Sources/OpenVPNAdapter/Libraries/Vendors/openvpn/' content from commit 554d8b888
git-subtree-dir: Sources/OpenVPNAdapter/Libraries/Vendors/openvpn git-subtree-split: 554d8b88817d3a7b836e78940ed61bb11ed2bd9b
This commit is contained in:
55
scripts/android/build-all
Executable file
55
scripts/android/build-all
Executable file
@@ -0,0 +1,55 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build the entire core package as required by Android App
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree
|
||||
exit 1
|
||||
fi
|
||||
|
||||
[ -z "$ECHO" ] && ECHO=0
|
||||
|
||||
if [ "$ECHO" -eq 0 ]; then
|
||||
exec > $O3/android_build.log
|
||||
exec 2>&1
|
||||
fi
|
||||
|
||||
[ -z "$DEP_DIR" ] && export DEP_DIR=${O3}/deps
|
||||
[ -z "$DL" ] && export DL=~/dl
|
||||
|
||||
mkdir -p $DEP_DIR
|
||||
mkdir -p $DL
|
||||
|
||||
export NO_MOD_PATH=1
|
||||
. $O3/core/vars/android-sdk-path
|
||||
|
||||
echo BUILD ANDROID SDK
|
||||
$O3/core/scripts/android/build-sdk
|
||||
|
||||
echo BUILD TOOLCHAIN
|
||||
$O3/core/scripts/android/build-toolchain
|
||||
|
||||
echo BUILD DEPS
|
||||
cd $DEP_DIR
|
||||
rm -rf asio* lz4* mbedtls* #lzo* boost* minicrypto openssl* polarssl* snappy*
|
||||
echo "******* ASIO"
|
||||
$O3/core/deps/asio/build-asio
|
||||
echo "******* MBEDTLS"
|
||||
$O3/core/scripts/android/build-mbedtls
|
||||
echo "******* LZ4"
|
||||
$O3/core/scripts/android/build-lz4
|
||||
|
||||
#echo "******* BOOST"
|
||||
#$O3/core/scripts/android/build-boost
|
||||
#echo "******* MINICRYPTO"
|
||||
#$O3/core/scripts/android/build-minicrypto
|
||||
#echo "******* OpenSSL"
|
||||
#$O3/core/scripts/android/build-openssl-small
|
||||
#echo "******* LZO"
|
||||
#$O3/core/scripts/android/build-lzo
|
||||
#echo "******* SNAPPY"
|
||||
#$O3/core/scripts/android/build-snappy
|
||||
|
||||
echo BUILD CORE LIBRARY
|
||||
$O3/core/javacli/build-android
|
||||
|
||||
echo DONE.
|
||||
23
scripts/android/build-boost
Executable file
23
scripts/android/build-boost
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env bash
|
||||
# Note: thread library may fail with PAGE_SIZE undefined.
|
||||
# The pthread.h header makes reference to the PAGE_SIZE define however
|
||||
# this only gets defined in <asm/page.h> which is not pulled in by any
|
||||
# of the pthread.h includes. A google-suggested fix was to add
|
||||
# #include <sys/mman.h>, which does indeed work, but may not be the
|
||||
# correct solution for all cases.
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
rm -rf boost
|
||||
mkdir boost
|
||||
export LINK_MODE=static
|
||||
export TARGETS="android-a8a android-a8a-dbg android-a7a android-a7a-dbg android android-dbg"
|
||||
export SDK_PATH_SCRIPT=$O3/core/vars/android-sdk-path
|
||||
$O3/core/deps/boost/build-boost
|
||||
exit 0
|
||||
25
scripts/android/build-lz4
Executable file
25
scripts/android/build-lz4
Executable file
@@ -0,0 +1,25 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree
|
||||
exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to the dependency build directory
|
||||
exit 1
|
||||
fi
|
||||
|
||||
. $O3/core/vars/android-sdk-path
|
||||
|
||||
cd $DEP_DIR
|
||||
rm -rf lz4
|
||||
mkdir lz4
|
||||
|
||||
TARGETS=${TARGETS:-android-a7a android-a8a android-x86}
|
||||
|
||||
for target in $TARGETS; do
|
||||
echo '***************' TARGET $target
|
||||
TARGET=$target $O3/core/deps/lz4/build-lz4
|
||||
done
|
||||
exit 0
|
||||
22
scripts/android/build-lzo
Executable file
22
scripts/android/build-lzo
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
. $O3/core/vars/android-sdk-path
|
||||
|
||||
rm -rf lzo
|
||||
mkdir lzo
|
||||
|
||||
for target in android-a8a android-a8a-dbg android-a7a android-a7a-dbg android android-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
TARGET=$target $O3/core/deps/lzo/build-lzo
|
||||
done
|
||||
exit 0
|
||||
30
scripts/android/build-mbedtls
Executable file
30
scripts/android/build-mbedtls
Executable file
@@ -0,0 +1,30 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to the dependency build directory
|
||||
exit 1
|
||||
fi
|
||||
|
||||
. $O3/core/vars/android-sdk-path
|
||||
|
||||
cd $DEP_DIR
|
||||
rm -rf mbedtls
|
||||
mkdir -p mbedtls
|
||||
|
||||
# disable minicrypto for now
|
||||
mini=0
|
||||
|
||||
TARGETS=${TARGETS:-android-a7a android-a8a android-x86}
|
||||
|
||||
for target in $TARGETS; do
|
||||
echo '***************' TARGET $target
|
||||
VERBOSE=1 TARGET=$target CMAKE_TARGET=android USE_MINICRYPTO=$mini MINICRYPTO_DIR=$(pwd)/minicrypto/minicrypto-$target $O3/core/deps/mbedtls/build-mbedtls
|
||||
[ "$ANDROID_DBG_ONLY" = "1" ] && exit
|
||||
done
|
||||
exit 0
|
||||
22
scripts/android/build-minicrypto
Executable file
22
scripts/android/build-minicrypto
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
. $O3/core/vars/android-sdk-path
|
||||
|
||||
rm -rf minicrypto
|
||||
mkdir minicrypto
|
||||
|
||||
for target in android android-dbg android-a7a android-a7a-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
TARGET=$target $O3/core/deps/minicrypto/build-minicrypto
|
||||
done
|
||||
exit 0
|
||||
39
scripts/android/build-openssl-small
Executable file
39
scripts/android/build-openssl-small
Executable file
@@ -0,0 +1,39 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
. $O3/core/deps/lib-versions
|
||||
. $O3/core/vars/android-sdk-path
|
||||
[ -z "$DL" ] && DL=~/Downloads
|
||||
rm -rf openssl
|
||||
mkdir openssl
|
||||
for TARGET in android-a8a android-a8a-dbg android-a7a android-a7a-dbg android-dbg android ; do
|
||||
. $O3/core/vars/vars-$TARGET
|
||||
export OPENSSL=$OPENSSL_VERSION
|
||||
export DIST=$(pwd)/openssl-$PLATFORM
|
||||
export BIN=$TC/bin
|
||||
rm -rf $DIST
|
||||
rm -rf $OPENSSL
|
||||
tar xfz $DL/$OPENSSL.tar.gz
|
||||
pushd $OPENSSL
|
||||
OSSL_FLAGS="no-shared threads no-idea no-mdc2 no-rc5 no-engine no-comp no-hw no-ssl2 no-ssl3 no-zlib no-rc2 no-cast no-md2 no-ripemd no-camellia no-seed no-krb5 no-socks no-ecdsa no-ec no-ecdh no-md2 no-whirlpool no-dsa no-cms no-jpake no-gost"
|
||||
#OSSL_FLAGS="no-shared threads no-comp no-zlib"
|
||||
./Configure linux-armv4 $OSSL_FLAGS --prefix=$DIST
|
||||
sed -i "" -e "s|-O3|$LIB_OPT_LEVEL $LIB_FPIC $PLATFORM_FLAGS $OTHER_COMPILER_FLAGS|" Makefile
|
||||
sed -i "" -e "s|ERR_load_COMP_strings()|//ERR_load_COMP_strings()|" crypto/err/err_all.c
|
||||
make -j 4 build_libs
|
||||
touch apps/openssl
|
||||
touch openssl.pc
|
||||
touch libcrypto.pc
|
||||
touch libssl.pc
|
||||
make install_sw
|
||||
popd
|
||||
mv $DIST openssl
|
||||
done
|
||||
exit 0
|
||||
27
scripts/android/build-polarssl
Executable file
27
scripts/android/build-polarssl
Executable file
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
. $O3/core/vars/android-sdk-path
|
||||
|
||||
# disable minicrypto for now
|
||||
mini=0
|
||||
|
||||
rm -rf polarssl
|
||||
mkdir polarssl
|
||||
|
||||
for target in android-a8a android-a8a-dbg android-a7a android-a7a-dbg android android-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
VERBOSE=1 TARGET=$target CMAKE_TARGET=android USE_MINICRYPTO=$mini MINICRYPTO_DIR=$(pwd)/minicrypto/minicrypto-$target $O3/core/deps/polarssl/build-polarssl
|
||||
mv polarssl-$target polarssl/
|
||||
[ "$ANDROID_DBG_ONLY" = "1" ] && exit
|
||||
done
|
||||
exit 0
|
||||
50
scripts/android/build-sdk
Executable file
50
scripts/android/build-sdk
Executable file
@@ -0,0 +1,50 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to the dependency build directory
|
||||
exit 1
|
||||
fi
|
||||
|
||||
[ -z "$SDK" ] && export SDK=$DEP_DIR/android-sdk
|
||||
|
||||
if [ -d "$SDK" ]; then
|
||||
echo "Android SDK already exists at $SDK. Doing only update"
|
||||
yes | $SDK/tools/bin/sdkmanager --licenses
|
||||
$SDK/tools/bin/sdkmanager --update
|
||||
exit 0
|
||||
fi
|
||||
|
||||
. $O3/core/deps/functions.sh
|
||||
|
||||
FNAME=sdk-tools-linux-3859397.zip
|
||||
URL=https://dl.google.com/android/repository/${FNAME}
|
||||
CSUM=444e22ce8ca0f67353bda4b85175ed3731cae3ffa695ca18119cbacef1c1bea0
|
||||
|
||||
download
|
||||
|
||||
cd $DEP_DIR
|
||||
rm -rf android-sdk
|
||||
mkdir android-sdk
|
||||
|
||||
. $O3/core/vars/android-sdk-path
|
||||
|
||||
cd $SDK
|
||||
unzip $DL/$FNAME
|
||||
|
||||
yes | $SDK/tools/bin/sdkmanager --licenses
|
||||
$SDK/tools/bin/sdkmanager --update
|
||||
$SDK/tools/bin/sdkmanager 'build-tools;26.0.2' \
|
||||
'ndk-bundle' \
|
||||
'extras;android;m2repository' \
|
||||
'patcher;v4' \
|
||||
'platform-tools' \
|
||||
'platforms;android-26' \
|
||||
'tools'
|
||||
|
||||
exit 0
|
||||
22
scripts/android/build-snappy
Executable file
22
scripts/android/build-snappy
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
. $O3/core/vars/android-sdk-path
|
||||
|
||||
rm -rf snappy
|
||||
mkdir snappy
|
||||
|
||||
for target in android-a8a android-a8a-dbg android-a7a android-a7a-dbg android android-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
TARGET=$target $O3/core/deps/snappy/build-snappy
|
||||
done
|
||||
exit 0
|
||||
66
scripts/android/build-toolchain
Executable file
66
scripts/android/build-toolchain
Executable file
@@ -0,0 +1,66 @@
|
||||
#!/usr/bin/env bash
|
||||
# Build the Android toolchain (run first)
|
||||
#set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
export DEP_DIR=${DEP_DIR:-$HOME/src/android}
|
||||
export NO_MOD_PATH=1
|
||||
. $O3/core/vars/android-sdk-path
|
||||
|
||||
# 64 bit
|
||||
cd $DEP_DIR
|
||||
DEST=$(pwd)/tc-arm64
|
||||
rm -rf $DEST
|
||||
ABI=aarch64-linux-android
|
||||
ABI_VER=4.9
|
||||
$NDK/build/tools/make-standalone-toolchain.sh \
|
||||
--verbose \
|
||||
--toolchain=$ABI-$ABI_VER \
|
||||
--stl=gnustl \
|
||||
--arch=arm64 \
|
||||
--platform=android-21 \
|
||||
--install-dir=$DEST
|
||||
cd $DEST/$ABI/bin
|
||||
ln -s ../../bin/$ABI-gcc cc
|
||||
ln -s ../../bin/$ABI-gcc gcc
|
||||
ln -s ../../bin/$ABI-g++ g++
|
||||
ln -s ../../libexec/gcc/$ABI/$ABI_VER.x/cc1 cc1
|
||||
ln -s ../../libexec/gcc/$ABI/$ABI_VER.x/cc1plus cc1plus
|
||||
|
||||
# 32 bit
|
||||
cd $DEP_DIR
|
||||
DEST=$(pwd)/tc-arm
|
||||
rm -rf $DEST
|
||||
ABI=arm-linux-androideabi
|
||||
ABI_VER=4.9
|
||||
$NDK/build/tools/make-standalone-toolchain.sh \
|
||||
--verbose \
|
||||
--toolchain=$ABI-$ABI_VER \
|
||||
--stl=gnustl \
|
||||
--arch=arm \
|
||||
--platform=android-14 \
|
||||
--install-dir=$DEST
|
||||
cd $DEST/$ABI/bin
|
||||
ln -s ../../bin/$ABI-gcc cc
|
||||
ln -s ../../libexec/gcc/$ABI/$ABI_VER.x/cc1 cc1
|
||||
ln -s ../../libexec/gcc/$ABI/$ABI_VER.x/cc1plus cc1plus
|
||||
|
||||
# 32 bit x86 for Android emulator
|
||||
cd $DEP_DIR
|
||||
DEST=$(pwd)/tc-x86
|
||||
rm -rf $DEST
|
||||
ABI=x86-linux-android
|
||||
SUB=i686-linux-android
|
||||
ABI_VER=4.9
|
||||
$NDK/build/tools/make-standalone-toolchain.sh \
|
||||
--verbose \
|
||||
--toolchain=$ABI-$ABI_VER \
|
||||
--stl=gnustl \
|
||||
--arch=x86 \
|
||||
--platform=android-14 \
|
||||
--install-dir=$DEST
|
||||
cd $DEST/$SUB/bin
|
||||
ln -s ../../bin/$SUB-gcc cc
|
||||
ln -s ../../libexec/gcc/$SUB/$ABI_VER.x/cc1 cc1
|
||||
ln -s ../../libexec/gcc/$SUB/$ABI_VER.x/cc1plus cc1plus
|
||||
343
scripts/build
Executable file
343
scripts/build
Executable file
@@ -0,0 +1,343 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree
|
||||
exit 1
|
||||
fi
|
||||
|
||||
enum_build_extras()
|
||||
{
|
||||
ls -d $(echo $O3/*/scripts/build-extras/*) | sort
|
||||
}
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
echo "usage: ./build target"
|
||||
echo "options:"
|
||||
echo " PROF=<platform> -- source vars/vars-<platform> before running"
|
||||
echo " DPROF=1 -- when PROF is specified, use the debugging variant"
|
||||
echo " CLANG=1 -- use clang instead of gcc"
|
||||
echo " DEBUG=1 -- enable debug symbols"
|
||||
echo " CO=1 -- compile only"
|
||||
echo " OBJC=1 -- top-level source file is Obj-C"
|
||||
echo ' ECHO=1 -- show commands'
|
||||
echo ' OUTBIN=name -- write binary to name'
|
||||
echo " STRIP=1 -- strip binary"
|
||||
echo " STRICT=1 -- more warnings"
|
||||
echo " LTO=1 -- build with LTO"
|
||||
echo " GPROF=1 -- build for gprof profiling"
|
||||
echo " PGEN=1 -- generate data for profile-guided optimization"
|
||||
echo " PUSE=1 -- use data from previous run of PGEN=1 build"
|
||||
echo " ASIO=1 -- build with ASIO"
|
||||
echo " ASIO_DIR=<dir> -- specify ASIO tree"
|
||||
echo " MTLS=1 -- include mbedTLS"
|
||||
echo " MTLS_SYS=1 -- use system mbedTLS"
|
||||
echo " MTLS_PATH=path -- use user specified mbedTLS source folder"
|
||||
echo " MTLS_LIBS=ldflags -- user specific mbedTLS LDFLAGS"
|
||||
echo " MA_HYBRID=1 -- use mbedTLS/AppleCrypto hybrid"
|
||||
echo " NOSSL=1 -- don't include OpenSSL"
|
||||
echo " OPENSSL_SYS=1 -- include system OpenSSL"
|
||||
echo " MINI=1 -- link with OpenSSL mini crypto lib"
|
||||
echo " OSSL=1 -- include OpenSSL"
|
||||
echo " SSL_BOTH=1 -- include OpenSSL and Apple SSL on Mac"
|
||||
echo " NOTHREADS=1 -- disable threads"
|
||||
echo ' GCC_EXTRA="-DITER=5" -- add build flags'
|
||||
echo " LZO=1 -- build with LZO compression library"
|
||||
echo " LZ4=1 -- build with LZ4 compression library"
|
||||
echo " LZ4_SYS=1 -- build with system LZ4 compression library"
|
||||
echo " SNAP=1 -- build with Snappy compression library"
|
||||
echo " CITY=1 -- build with Cityhash hash library"
|
||||
echo " VAL=1 -- build with valgrind run-time extensions"
|
||||
echo " JAVA=1 -- build with JVM"
|
||||
echo ' EXTRA_CPP="foo1.cpp foo2.cpp" -- add extra .cpp files'
|
||||
echo " GTEST_DIR=<dir> -- specify googletest tree, required for building unit tests"
|
||||
for s in $(enum_build_extras) ; do
|
||||
. $s args
|
||||
done
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# source vars file
|
||||
if [ "$PROF" ]; then
|
||||
suffix=""
|
||||
[ "$DPROF" = "1" ] && suffix="-dbg"
|
||||
pfn="$O3/core/vars/vars-$PROF$suffix"
|
||||
if ! [ -f "$pfn" ]; then
|
||||
pfn="$PROF"
|
||||
fi
|
||||
. $pfn || exit 1
|
||||
fi
|
||||
|
||||
# remove previous build
|
||||
[ -z "$OUTBIN" ] && OUTBIN="$(basename $1)"
|
||||
rm -f $OUTBIN
|
||||
|
||||
# build options
|
||||
CPPFLAGS=""
|
||||
LIBS=""
|
||||
LIBDIRS=""
|
||||
EXTRA_SRC_OBJ=""
|
||||
|
||||
# MbedTLS/AppleCrypto hybrid
|
||||
if [ "$MA_HYBRID" = "1" ]; then
|
||||
MTLS=1
|
||||
fi
|
||||
|
||||
# building on Mac OS X for osx, ios, or iossim?
|
||||
if [ "$APPLE_FAMILY" = "1" ]; then
|
||||
[ -z "$CLANG" ] && CLANG=1
|
||||
fi
|
||||
|
||||
# clang support
|
||||
if [ "$CLANG" = "1" ]; then
|
||||
[ -z "$GPP_CMD" ] && GPP_CMD=clang++
|
||||
fi
|
||||
|
||||
# building on Linux, use system OpenSSL
|
||||
if [ "$PLATFORM" = "linux" ] && [ "$OSSL" = "1" ] && [ "$NOSSL" != "1" ] && [ -z "$OPENSSL_SYS" ]; then
|
||||
OSSL=0
|
||||
OPENSSL_SYS=1
|
||||
fi
|
||||
|
||||
# default commands
|
||||
[ -z "$STRIP_CMD" ] && STRIP_CMD=strip
|
||||
[ -z "$GPP_CMD" ] && GPP_CMD=g++
|
||||
|
||||
# build flags
|
||||
FLAGS="-Wall"
|
||||
[ "$STRICT" = "1" ] && FLAGS="$FLAGS -Wextra"
|
||||
[ "$CLANG" = "1" ] && FLAGS="$FLAGS -Wno-tautological-compare -Wno-unused-private-field -Wno-c++1y-extensions"
|
||||
FLAGS="$FLAGS -Wno-sign-compare -Wno-unused-parameter"
|
||||
|
||||
# The Mac OS X tun/tap driver doesn't play with with kqueue.
|
||||
# utun devices, however, work fine with kqueue.
|
||||
#if [ "$PLATFORM" = "osx" ]; then
|
||||
# CPPFLAGS="$CPPFLAGS -DBOOST_ASIO_DISABLE_KQUEUE"
|
||||
#fi
|
||||
|
||||
# MbedTLS
|
||||
if [ "$MTLS_SYS" = "1" ]; then
|
||||
CPPFLAGS="$CPPFLAGS -DUSE_MBEDTLS"
|
||||
LIBS="$LIBS -lmbedtls -lmbedx509 -lmbedcrypto"
|
||||
elif [ "$MTLS" = "1" ]; then
|
||||
LIBS="$LIBS -lmbedtls $MTLS_LIBS"
|
||||
if [ "$MA_HYBRID" = "1" ]; then
|
||||
CPPFLAGS="$CPPFLAGS -DUSE_MBEDTLS_APPLE_HYBRID"
|
||||
else
|
||||
CPPFLAGS="$CPPFLAGS -DUSE_MBEDTLS"
|
||||
fi
|
||||
if [ -n "$MTLS_PATH" ]; then
|
||||
CPPFLAGS="$CPPFLAGS -I$MTLS_PATH/include"
|
||||
LIBDIRS="$LIBDIRS -L$MTLS_PATH/library"
|
||||
else
|
||||
CPPFLAGS="$CPPFLAGS -I$DEP_DIR/mbedtls/mbedtls-$PLATFORM/include"
|
||||
LIBDIRS="$LIBDIRS -L$DEP_DIR/mbedtls/mbedtls-$PLATFORM/library"
|
||||
fi
|
||||
if [ "$MINI" = "1" ]; then
|
||||
LIBS="$LIBS -lminicrypto"
|
||||
LIBDIRS="$LIBDIRS -L$DEP_DIR/minicrypto/minicrypto-$PLATFORM"
|
||||
CPPFLAGS="$CPPFLAGS -DUSE_MINICRYPTO"
|
||||
NOSSL=1
|
||||
fi
|
||||
fi
|
||||
|
||||
# OpenSSL
|
||||
if [ "$APPLE_FAMILY" = "1" ]; then
|
||||
# On Mac, only link with OpenSSL if OSSL is defined.
|
||||
# On other platforms, usually link with OpenSSL.
|
||||
if [ "$OPENSSL_SYS" == "1" ]; then
|
||||
NO_DEPRECATE="-Wno-deprecated-declarations"
|
||||
else
|
||||
NO_DEPRECATE=""
|
||||
fi
|
||||
if [ "$OPENSSL_LINK" = "1" ]; then
|
||||
LIBS="$LIBS -lcrypto -lssl"
|
||||
elif [ "$OSSL" = "1" ]; then
|
||||
CPPFLAGS="$CPPFLAGS -DUSE_OPENSSL"
|
||||
LIBS="$LIBS -lcrypto -lssl"
|
||||
[ "$CLANG" = "1" ] && [ "$NO_DEPRECATE" ] && FLAGS="$FLAGS $NO_DEPRECATE"
|
||||
elif [ "$SSL_BOTH" = "1" ]; then
|
||||
CPPFLAGS="$CPPFLAGS -DUSE_APPLE_SSL -DUSE_OPENSSL"
|
||||
LIBS="$LIBS -lcrypto -lssl"
|
||||
[ "$CLANG" = "1" ] && [ "$NO_DEPRECATE" ] && FLAGS="$FLAGS $NO_DEPRECATE"
|
||||
elif [ "$MTLS" = "1" ]; then
|
||||
NOSSL=1
|
||||
else
|
||||
NOSSL=1
|
||||
CPPFLAGS="$CPPFLAGS -DUSE_APPLE_SSL"
|
||||
fi
|
||||
LIBS="$LIBS -framework Security"
|
||||
else
|
||||
if [ "$OPENSSL_LINK" = "1" ]; then
|
||||
LIBS="$LIBS -lcrypto -lssl"
|
||||
elif [ "$NOSSL" != "1" ]; then
|
||||
CPPFLAGS="$CPPFLAGS -DUSE_OPENSSL"
|
||||
LIBS="$LIBS -lssl -lcrypto -ldl"
|
||||
fi
|
||||
fi
|
||||
if [ "$OPENSSL_SYS" != "1" ] && [ "$OPENSSL_LINK" != "1" ] && [ "$NOSSL" != "1" ]; then
|
||||
CPPFLAGS="$CPPFLAGS -I$DEP_DIR/openssl/openssl-$PLATFORM/include"
|
||||
LIBDIRS="$LIBDIRS -L$DEP_DIR/openssl/openssl-$PLATFORM/lib"
|
||||
fi
|
||||
|
||||
# Apple libs
|
||||
if [ "$APPLE_FAMILY" = "1" ]; then
|
||||
LIBS="$LIBS -framework CoreFoundation -framework SystemConfiguration -framework IOKit -framework ApplicationServices"
|
||||
fi
|
||||
|
||||
# boost
|
||||
#CPPFLAGS="$CPPFLAGS -I$DEP_DIR/boost"
|
||||
#LIBS="$LIBS -lboost_system"
|
||||
#LIBDIRS="$LIBDIRS -L$DEP_DIR/boost/stage-$PLATFORM/lib"
|
||||
#if [ "$NOTHREADS" = "1" ]; then
|
||||
# CPPFLAGS="$CPPFLAGS -DBOOST_DISABLE_THREADS"
|
||||
#else
|
||||
# #LIBS="$LIBS -lboost_thread" # no longer needed because we use std::thread now
|
||||
# [ "$PLATFORM" != "android" ] && FLAGS="$FLAGS -pthread"
|
||||
#fi
|
||||
|
||||
# asio
|
||||
if [ "$ASIO" = "1" ] || [ "$ASIO_DIR" ]; then
|
||||
[ -z "$ASIO_DIR" ] && ASIO_DIR="$DEP_DIR/asio"
|
||||
CPPFLAGS="$CPPFLAGS -DUSE_ASIO -DASIO_STANDALONE -DASIO_NO_DEPRECATED -I$ASIO_DIR/asio/include"
|
||||
fi
|
||||
|
||||
# gtest
|
||||
if [ "$GTEST_DIR" ]; then
|
||||
CPPFLAGS="$CPPFLAGS -I$GTEST_DIR/googletest/include"
|
||||
LIBDIRS="$LIBDIRS -L$GTEST_DIR/googlemock/gtest"
|
||||
LIBS="$LIBS -lgtest"
|
||||
fi
|
||||
|
||||
# LZO compression
|
||||
if [ "$LZO" = "1" ]; then
|
||||
LIBDIRS="$LIBDIRS -L$DEP_DIR/lzo/lzo-$PLATFORM/lib"
|
||||
CPPFLAGS="$CPPFLAGS -I$DEP_DIR/lzo/lzo-$PLATFORM/include"
|
||||
LIBS="$LIBS -llzo2"
|
||||
CPPFLAGS="$CPPFLAGS -DHAVE_LZO"
|
||||
fi
|
||||
|
||||
# LZ4 compression
|
||||
if [ "$LZ4_SYS" = "1" ]; then
|
||||
CPPFLAGS="$CPPFLAGS -DHAVE_LZ4"
|
||||
LIBS="$LIBS -llz4"
|
||||
elif [ "$LZ4" = "1" ]; then
|
||||
EXTRA_SRC_OBJ="$EXTRA_SRC_OBJ $DEP_DIR/lz4/lz4-$PLATFORM/lib/liblz4.a"
|
||||
CPPFLAGS="$CPPFLAGS -I$DEP_DIR/lz4/lz4-$PLATFORM/include -DHAVE_LZ4"
|
||||
fi
|
||||
|
||||
# Snappy compression
|
||||
if [ "$SNAP" = "1" ]; then
|
||||
LIBDIRS="$LIBDIRS -L$DEP_DIR/snappy/snappy-$PLATFORM/lib"
|
||||
CPPFLAGS="$CPPFLAGS -I$DEP_DIR/snappy/snappy-$PLATFORM/include"
|
||||
LIBS="$LIBS -lsnappy"
|
||||
CPPFLAGS="$CPPFLAGS -DHAVE_SNAPPY"
|
||||
fi
|
||||
|
||||
# Cityhash
|
||||
if [ "$CITY" = "1" ]; then
|
||||
LIBDIRS="$LIBDIRS -L$DEP_DIR/cityhash/cityhash-$PLATFORM/lib"
|
||||
CPPFLAGS="$CPPFLAGS -I$DEP_DIR/cityhash/cityhash-$PLATFORM/include"
|
||||
LIBS="$LIBS -lcityhash"
|
||||
CPPFLAGS="$CPPFLAGS -DHAVE_CITYHASH"
|
||||
fi
|
||||
|
||||
# Valgrind
|
||||
if [ "$VAL" = "1" ]; then
|
||||
CPPFLAGS="$CPPFLAGS -DHAVE_VALGRIND"
|
||||
fi
|
||||
|
||||
# JVM
|
||||
if [ "$JAVA" = "1" ]; then
|
||||
if [ -z "$JAVA_HOME" ]; then
|
||||
echo JAVA_HOME not defined
|
||||
exit 1
|
||||
fi
|
||||
LIBDIRS="$LIBDIRS -L$JAVA_HOME/jre/lib/amd64/server"
|
||||
CPPFLAGS="$CPPFLAGS -I$JAVA_HOME/include -I$JAVA_HOME/include/linux"
|
||||
LIBS="$LIBS -ljvm"
|
||||
fi
|
||||
|
||||
# other environments
|
||||
for s in $(enum_build_extras) ; do
|
||||
. $s deps
|
||||
done
|
||||
|
||||
# Android NDK
|
||||
if [ "$PLATFORM" = "android" ]; then
|
||||
CPPFLAGS="$CPPFLAGS -D__GLIBC__"
|
||||
CPPFLAGS="$CPPFLAGS -D_GLIBCXX_HAVE_FENV_H=1"
|
||||
# CPPFLAGS="$CPPFLAGS -DBOOST_NO_INTRINSIC_WCHAR_T"
|
||||
fi
|
||||
|
||||
# Special platform flags
|
||||
if [ "$PLATFORM_FLAGS" ]; then
|
||||
FLAGS="$FLAGS $PLATFORM_FLAGS"
|
||||
fi
|
||||
|
||||
# C++ compiler flags
|
||||
if [ "$CXX_COMPILER_FLAGS" ]; then
|
||||
FLAGS="$FLAGS $CXX_COMPILER_FLAGS"
|
||||
fi
|
||||
|
||||
# Other compiler flags
|
||||
if [ "$OTHER_COMPILER_FLAGS" ]; then
|
||||
FLAGS="$FLAGS $OTHER_COMPILER_FLAGS"
|
||||
fi
|
||||
|
||||
# ovpn3
|
||||
CPPFLAGS="$CPPFLAGS -I$O3/core"
|
||||
|
||||
# profile-guided optimization
|
||||
if [ "$PGEN" = "1" ]; then
|
||||
FLAGS="$FLAGS -fprofile-generate"
|
||||
elif [ "$PUSE" = "1" ]; then
|
||||
FLAGS="$FLAGS -fprofile-use"
|
||||
fi
|
||||
|
||||
# compiler flags
|
||||
FLAGS="$LIB_OPT_LEVEL $FLAGS"
|
||||
|
||||
# whole-program
|
||||
if [ "$CLANG" != "1" ] && [ "$DEBUG_BUILD" != "1" ] && [ -z "$EXTRA_CPP" ] && [ "$CO" != "1" ]; then
|
||||
FLAGS="-fwhole-program $FLAGS"
|
||||
fi
|
||||
|
||||
# compile only
|
||||
if [ "$CO" == "1" ]; then
|
||||
OUTPUT="-c"
|
||||
LIBDIRS=""
|
||||
LIBS=""
|
||||
EXTRA_SRC_OBJ=""
|
||||
else
|
||||
OUTPUT="-o $OUTBIN"
|
||||
fi
|
||||
|
||||
# release/debug builds
|
||||
if [ "$DEBUG" = "1" ]; then
|
||||
# debug build
|
||||
FLAGS="-g $FLAGS"
|
||||
else
|
||||
# release build
|
||||
[ "$LTO" = "1" ] && [ "$CLANG" != "1" ] && FLAGS="$FLAGS -flto=4 -Wl,--no-as-needed"
|
||||
[ "$GPROF" = "1" ] && FLAGS="$FLAGS -pg"
|
||||
fi
|
||||
|
||||
# Construct command
|
||||
if [ "$OBJC" == "1" ]; then
|
||||
FLAGS="$FLAGS -fobjc-arc"
|
||||
LIBS="-framework Foundation $LIBS"
|
||||
SRC="$1.mm"
|
||||
CMD="$GPP_CMD $FLAGS $GCC_EXTRA $CPPFLAGS $LIBDIRS $SRC $EXTRA_CPP $EXTRA_SRC_OBJ $OUTPUT $LIBS"
|
||||
else
|
||||
CMD="$GPP_CMD $FLAGS $GCC_EXTRA $CPPFLAGS $LIBDIRS $1.cpp $EXTRA_CPP $EXTRA_SRC_OBJ $OUTPUT $LIBS"
|
||||
fi
|
||||
|
||||
# execute CMD
|
||||
[ "$ECHO" = "1" ] && echo $CMD
|
||||
$CMD
|
||||
|
||||
# maybe strip
|
||||
[ "$STRIP" = "1" ] && $STRIP_CMD $OUTBIN
|
||||
exit 0
|
||||
8
scripts/build-extras/zlib.sh
Normal file
8
scripts/build-extras/zlib.sh
Normal file
@@ -0,0 +1,8 @@
|
||||
if [ "$1" = "args" ]; then
|
||||
echo " ZLIB=1 -- link with zlib"
|
||||
elif [ "$1" = "deps" ]; then
|
||||
if [ "$ZLIB" = "1" ]; then
|
||||
LIBS="$LIBS -lz"
|
||||
CPPFLAGS="$CPPFLAGS -DHAVE_ZLIB"
|
||||
fi
|
||||
fi
|
||||
22
scripts/linux/build-all
Executable file
22
scripts/linux/build-all
Executable file
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
export DEP_DIR=${DEP_DIR:-$HOME/linux}
|
||||
cd $DEP_DIR
|
||||
rm -rf asio* boost* lz4* lzo* minicrypto openssl* polarssl* snappy*
|
||||
echo "******* ASIO"
|
||||
$O3/core/deps/asio/build-asio
|
||||
echo "******* MBEDTLS"
|
||||
$O3/core/scripts/linux/build-mbedtls
|
||||
echo "******* LZ4"
|
||||
$O3/core/scripts/linux/build-lz4
|
||||
echo "******* CITYHASH"
|
||||
$O3/core/scripts/linux/build-cityhash
|
||||
|
||||
#$O3/core/scripts/linux/build-openssl x64
|
||||
#$O3/core/scripts/linux/build-lzo
|
||||
#$O3/core/scripts/linux/build-boost
|
||||
#$O3/core/scripts/linux/build-snappy
|
||||
#$O3/core/scripts/linux/consolidate-so
|
||||
18
scripts/linux/build-boost
Executable file
18
scripts/linux/build-boost
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
rm -rf boost
|
||||
mkdir boost
|
||||
|
||||
export TARGETS="linux"
|
||||
|
||||
$O3/core/deps/boost/build-boost
|
||||
exit 0
|
||||
14
scripts/linux/build-cityhash
Executable file
14
scripts/linux/build-cityhash
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
rm -rf cityhash
|
||||
mkdir cityhash
|
||||
TARGET=linux $O3/core/deps/cityhash/build-cityhash
|
||||
exit 0
|
||||
14
scripts/linux/build-lz4
Executable file
14
scripts/linux/build-lz4
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
rm -rf lz4
|
||||
mkdir lz4
|
||||
TARGET=linux $O3/core/deps/lz4/build-lz4
|
||||
exit 0
|
||||
14
scripts/linux/build-lzo
Executable file
14
scripts/linux/build-lzo
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
rm -rf lzo
|
||||
mkdir lzo
|
||||
TARGET=linux $O3/core/deps/lzo/build-lzo
|
||||
exit 0
|
||||
19
scripts/linux/build-mbedtls
Executable file
19
scripts/linux/build-mbedtls
Executable file
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
rm -rf mbedtls
|
||||
|
||||
if [ "$LINK_MODE" = "shared" ]; then
|
||||
SHARED=1
|
||||
else
|
||||
SHARED=0
|
||||
fi
|
||||
VERBOSE=1 TARGET=linux ENABLE_SERVER=1 SHARED=$SHARED $O3/core/deps/mbedtls/build-mbedtls
|
||||
exit 0
|
||||
35
scripts/linux/build-openssl
Executable file
35
scripts/linux/build-openssl
Executable file
@@ -0,0 +1,35 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
if [ -z "$1" ]; then
|
||||
echo "usage: build-openssl x64|arm"
|
||||
exit 1
|
||||
fi
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
rm -rf openssl
|
||||
mkdir openssl
|
||||
|
||||
export LINK_MODE=shared
|
||||
|
||||
case $1 in
|
||||
x64*)
|
||||
export OPENSSL_TARGET=linux-x86_64
|
||||
;;
|
||||
arm*)
|
||||
export OPENSSL_TARGET=linux-armv4
|
||||
;;
|
||||
*)
|
||||
echo "unknown platform"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
TARGET=linux $O3/core/deps/openssl/build-openssl
|
||||
exit 0
|
||||
20
scripts/linux/build-polarssl
Executable file
20
scripts/linux/build-polarssl
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
rm -rf polarssl
|
||||
mkdir polarssl
|
||||
if [ "$LINK_MODE" = "shared" ]; then
|
||||
SHARED=1
|
||||
else
|
||||
SHARED=0
|
||||
fi
|
||||
VERBOSE=1 TARGET=linux ENABLE_SERVER=1 SHARED=$SHARED $O3/core/deps/polarssl/build-polarssl
|
||||
mv polarssl-linux polarssl
|
||||
exit 0
|
||||
15
scripts/linux/build-polarssl-ovpn2
Executable file
15
scripts/linux/build-polarssl-ovpn2
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# When running OpenVPN 2.x ./configure script, use the following command:
|
||||
#
|
||||
# POLARSSL_CFLAGS="-I$HOME/linux/polarssl/polarssl-linux/include" POLARSSL_LIBS="-L$HOME/linux/polarssl/polarssl-linux/library -lpolarssl" ./configure --with-crypto-library=polarssl
|
||||
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
|
||||
rm -rf polarssl
|
||||
mkdir polarssl
|
||||
VERBOSE=1 TARGET=linux ENABLE_SERVER=1 ENABLE_FS_IO=1 $O3/core/deps/polarssl/build-polarssl
|
||||
mv polarssl-linux polarssl
|
||||
exit 0
|
||||
13
scripts/linux/build-snappy
Executable file
13
scripts/linux/build-snappy
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
rm -rf snappy
|
||||
mkdir snappy
|
||||
TARGET=linux $O3/core/deps/snappy/build-snappy
|
||||
10
scripts/linux/consolidate-so
Executable file
10
scripts/linux/consolidate-so
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/usr/bin/env bash
|
||||
rm -rf so
|
||||
mkdir so
|
||||
OPT=-d
|
||||
[ -d boost ] && cp $OPT boost/stage-linux/lib/lib* so/
|
||||
[ -d lzo ] && cp $OPT lzo/lzo-linux/lib/lib* so/
|
||||
[ -d openssl ] && cp $OPT openssl/openssl-linux/lib/lib* so/
|
||||
[ -d snappy ] && cp $OPT snappy/snappy-linux/lib/lib* so/
|
||||
[ -d polarssl ] && cp $OPT polarssl/polarssl-linux/library/lib* so/
|
||||
exit 0
|
||||
20
scripts/mac/build-all
Executable file
20
scripts/mac/build-all
Executable file
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
export DEP_DIR=${DEP_DIR:-$HOME/src/mac}
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
rm -rf asio* boost* lz4* lzo* minicrypto openssl* polarssl* mbedtls* snappy*
|
||||
echo "******* ASIO"
|
||||
$O3/core/deps/asio/build-asio
|
||||
echo "******* MBEDTLS"
|
||||
# consider OSX_SERVER=0
|
||||
$O3/core/scripts/mac/build-mbedtls
|
||||
echo "******* LZ4"
|
||||
$O3/core/scripts/mac/build-lz4
|
||||
|
||||
#echo "******* MINICRYPTO"
|
||||
#$O3/core/scripts/mac/build-minicrypto
|
||||
#echo "******* SNAPPY"
|
||||
#$O3/core/scripts/mac/build-snappy
|
||||
23
scripts/mac/build-boost
Executable file
23
scripts/mac/build-boost
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
rm -rf boost
|
||||
mkdir boost
|
||||
|
||||
export LINK_MODE=static
|
||||
if [ "$OSX_ONLY" == "1" ]; then
|
||||
export TARGETS="osx osx-dbg"
|
||||
else
|
||||
export TARGETS="ios ios-dbg iossim iossim-dbg osx osx-dbg"
|
||||
fi
|
||||
|
||||
$O3/core/deps/boost/build-boost
|
||||
exit 0
|
||||
27
scripts/mac/build-lz4
Executable file
27
scripts/mac/build-lz4
Executable file
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
rm -rf lz4
|
||||
mkdir lz4
|
||||
|
||||
if [ "$OSX_ONLY" != "1" ]; then
|
||||
for target in ios ios-dbg iossim iossim-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
TARGET=$target $O3/core/deps/lz4/build-lz4
|
||||
done
|
||||
fi
|
||||
|
||||
for target in osx osx-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
TARGET=$target $O3/core/deps/lz4/build-lz4
|
||||
done
|
||||
exit 0
|
||||
28
scripts/mac/build-lzo
Executable file
28
scripts/mac/build-lzo
Executable file
@@ -0,0 +1,28 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
[ "$DEP_DIR" ] && cd $DEP_DIR
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
rm -rf lzo
|
||||
mkdir lzo
|
||||
|
||||
if [ "$OSX_ONLY" != "1" ]; then
|
||||
for target in ios ios-dbg iossim iossim-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
TARGET=$target $O3/core/deps/lzo/build-lzo
|
||||
done
|
||||
fi
|
||||
|
||||
for target in osx osx-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
TARGET=$target $O3/core/deps/lzo/build-lzo
|
||||
done
|
||||
exit 0
|
||||
37
scripts/mac/build-mbedtls
Executable file
37
scripts/mac/build-mbedtls
Executable file
@@ -0,0 +1,37 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
rm -rf mbedtls
|
||||
|
||||
if [ "$OSX_ONLY" != "1" ]; then
|
||||
# for ios, build with minicrypto
|
||||
for target in ios-dbg ios ; do
|
||||
echo '***************' TARGET $target
|
||||
VERBOSE=1 TARGET=$target USE_MINICRYPTO=0 $O3/core/deps/mbedtls/build-mbedtls
|
||||
[ "$IOS_DBG_ONLY" = "1" ] && exit
|
||||
done
|
||||
|
||||
# ios simulators
|
||||
for target in iossim iossim-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
VERBOSE=1 TARGET=$target $O3/core/deps/mbedtls/build-mbedtls
|
||||
done
|
||||
fi
|
||||
|
||||
# osx
|
||||
[ -z "$OSX_MINICRYPTO" ] && OSX_MINICRYPTO=0
|
||||
[ -z "$OSX_SERVER" ] && OSX_SERVER=1
|
||||
for target in osx osx-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
VERBOSE=1 TARGET=$target USE_MINICRYPTO=$OSX_MINICRYPTO MINICRYPTO_NO_AES=1 ENABLE_SERVER=$OSX_SERVER $O3/core/deps/mbedtls/build-mbedtls
|
||||
done
|
||||
exit 0
|
||||
27
scripts/mac/build-minicrypto
Executable file
27
scripts/mac/build-minicrypto
Executable file
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
[ "$DEP_DIR" ] && cd $DEP_DIR
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
rm -rf minicrypto
|
||||
mkdir minicrypto
|
||||
|
||||
for target in osx osx-dbg ; do
|
||||
echo '***************' Minicrypto-32 $target
|
||||
TARGET=$target ARCH=i386 $O3/core/deps/minicrypto/build-minicrypto-osx
|
||||
echo '***************' Minicrypto-64 $target
|
||||
TARGET=$target ARCH=x86_64 $O3/core/deps/minicrypto/build-minicrypto-osx
|
||||
cd minicrypto/minicrypto-$target
|
||||
lipo -create */libminicrypto.a -output libminicrypto.a
|
||||
lipo -info libminicrypto.a
|
||||
cd ../..
|
||||
done
|
||||
exit 0
|
||||
32
scripts/mac/build-openssl
Executable file
32
scripts/mac/build-openssl
Executable file
@@ -0,0 +1,32 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
[ "$DEP_DIR" ] && cd $DEP_DIR
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
rm -rf openssl
|
||||
mkdir openssl
|
||||
|
||||
for target in osx ; do
|
||||
echo '***************' OpenSSL-32 $target
|
||||
TARGET=$target OPENSSL_TARGET=darwin-i386-cc ARCH=i386 $O3/core/deps/openssl/build-openssl
|
||||
echo '***************' OpenSSL-64 $target
|
||||
TARGET=$target OPENSSL_TARGET=darwin64-x86_64-cc ARCH=x86_64 $O3/core/deps/openssl/build-openssl
|
||||
cd openssl/openssl-$target
|
||||
cp -a x86_64/include .
|
||||
rm include/openssl/opensslconf.h # contains 32/64-bit specific references
|
||||
for l in libcrypto.a libssl.a ; do
|
||||
lipo -create */lib/$l -output $l
|
||||
done
|
||||
mkdir lib
|
||||
mv *.a lib
|
||||
cd ../..
|
||||
done
|
||||
exit 0
|
||||
41
scripts/mac/build-polarssl
Executable file
41
scripts/mac/build-polarssl
Executable file
@@ -0,0 +1,41 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
rm -rf polarssl
|
||||
mkdir polarssl
|
||||
|
||||
if [ "$OSX_ONLY" != "1" ]; then
|
||||
# for ios, build with minicrypto
|
||||
for target in ios-dbg ios ; do
|
||||
echo '***************' TARGET $target
|
||||
VERBOSE=1 TARGET=$target USE_MINICRYPTO=0 $O3/core/deps/polarssl/build-polarssl
|
||||
mv polarssl-$target polarssl
|
||||
[ "$IOS_DBG_ONLY" = "1" ] && exit
|
||||
done
|
||||
|
||||
# ios simulators
|
||||
for target in iossim iossim-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
VERBOSE=1 TARGET=$target $O3/core/deps/polarssl/build-polarssl
|
||||
mv polarssl-$target polarssl/
|
||||
done
|
||||
fi
|
||||
|
||||
# osx
|
||||
[ -z "$OSX_MINICRYPTO" ] && OSX_MINICRYPTO=0
|
||||
[ -z "$OSX_SERVER" ] && OSX_SERVER=1
|
||||
for target in osx osx-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
VERBOSE=1 TARGET=$target USE_MINICRYPTO=$OSX_MINICRYPTO MINICRYPTO_NO_AES=1 ENABLE_SERVER=$OSX_SERVER $O3/core/deps/polarssl/build-polarssl
|
||||
mv polarssl-$target polarssl/
|
||||
done
|
||||
exit 0
|
||||
27
scripts/mac/build-snappy
Executable file
27
scripts/mac/build-snappy
Executable file
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
if [ -z "$O3" ]; then
|
||||
echo O3 var must point to ovpn3 tree ; exit 1
|
||||
fi
|
||||
if [ -z "$DEP_DIR" ]; then
|
||||
echo DEP_DIR var must point to ovpn3 dependency tree
|
||||
exit 1
|
||||
fi
|
||||
cd $DEP_DIR
|
||||
|
||||
rm -rf snappy
|
||||
mkdir snappy
|
||||
|
||||
if [ "$OSX_ONLY" != "1" ]; then
|
||||
for target in ios ios-dbg iossim iossim-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
TARGET=$target $O3/core/deps/snappy/build-snappy
|
||||
done
|
||||
fi
|
||||
|
||||
for target in osx osx-dbg ; do
|
||||
echo '***************' TARGET $target
|
||||
TARGET=$target $O3/core/deps/snappy/build-snappy
|
||||
done
|
||||
exit 0
|
||||
36
scripts/snapshot
Executable file
36
scripts/snapshot
Executable file
@@ -0,0 +1,36 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Create a tarball from a git checkout.
|
||||
#
|
||||
# DEP_DIR : dependency directory
|
||||
# NAME : basename of git root directory in dependency directory
|
||||
# DL : download directory, where to build tarball, defaults to ~/Downloads
|
||||
|
||||
# Note: this script gives priority to $NAME-yyyymmdd as source location,
|
||||
# so for Asio, make sure to delete such directories if you want to
|
||||
# favor straight "asio" directory.
|
||||
|
||||
set -e
|
||||
if [ -z "$NAME" ]; then
|
||||
echo "NAME var must exist"
|
||||
exit 1
|
||||
fi
|
||||
[ -z "$DL" ] && DL=~/Downloads
|
||||
if ! [ -d "$DL" ]; then
|
||||
echo $DL directory must exist
|
||||
exit 1
|
||||
fi
|
||||
[ "$DEP_DIR" ] && cd $DEP_DIR
|
||||
NAMETS=$(ls -dt ${NAME}-* 2>/dev/null | head -n1)
|
||||
if [ -z "$NAMETS" ]; then
|
||||
cd $NAME
|
||||
NAMETS=${NAME}-$(git log -1 --date=short --pretty=format:%cd | tr -d '-')
|
||||
cd ..
|
||||
mv $NAME $NAMETS
|
||||
fi
|
||||
NAMEVER=$(echo $NAME | awk '{print toupper($0)}')_VERSION
|
||||
TGZ=$DL/$NAMETS.tar.gz
|
||||
echo "creating $TGZ"
|
||||
tar cfz $TGZ $NAMETS
|
||||
echo 'Add to $O3/core/deps/lib-versions :'
|
||||
echo "export $NAMEVER=$NAMETS"
|
||||
34
scripts/version
Executable file
34
scripts/version
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/bin/bash
|
||||
|
||||
# OpenVPN -- An application to securely tunnel IP networks
|
||||
# over a single port, with support for SSL/TLS-based
|
||||
# session authentication and key exchange,
|
||||
# packet encryption, packet authentication, and
|
||||
# packet compression.
|
||||
#
|
||||
# Copyright (C) 2018 OpenVPN Inc.
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License Version 3
|
||||
# as published by the Free Software Foundation.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program in the COPYING file.
|
||||
# If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
set -eu
|
||||
|
||||
# ensure this script works even when core is used as submodule, by setting
|
||||
# O3/core/.git as git folder
|
||||
export GIT_DIR=$(dirname $0)/../.git
|
||||
|
||||
MAJOR=3
|
||||
BRANCH="$(git rev-parse --symbolic-full-name HEAD | cut -d/ -f3- | tr / _)"
|
||||
COMMIT_ID="$(git rev-list HEAD -1 --abbrev-commit)"
|
||||
|
||||
echo "$MAJOR.git:$BRANCH:$COMMIT_ID"
|
||||
Reference in New Issue
Block a user