54 lines
1.1 KiB
Bash
Executable File
54 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
#TOOL=arm-musl-linuxeabihf
|
|
TOOL=x86_64-unknown-linux-gnu
|
|
OPENSSL_TARGET=linux-generic32
|
|
OUT=$TOOL
|
|
# TODO: more targets / host target / musl target from host
|
|
|
|
if [ $# -lt 1 ]
|
|
then
|
|
echo "Usage : $0 [arm32-musl|x86_64|musl]"
|
|
exit
|
|
fi
|
|
|
|
case "$1" in
|
|
arm32-musl )
|
|
TOOL=arm-linux-musleabihf
|
|
OUT=$TOOL
|
|
OPENSSL_TARGET=linux-generic32
|
|
;;
|
|
x86_64 )
|
|
TOOL=x86_64-unknown-linux-gnu
|
|
OUT=$TOOL
|
|
OPENSSL_TARGET=linux-generic64
|
|
;;
|
|
musl )
|
|
TOOL=x86_64-unknown-linux-gnu
|
|
OUT=musl
|
|
OPENSSL_TARGET=linux-generic64
|
|
;;
|
|
*) echo "Invalid target!" ; exit 1
|
|
;;
|
|
esac
|
|
|
|
mkdir -p dependencies
|
|
mkdir -p dependencies/include
|
|
mkdir -p dependencies/include-$OUT
|
|
|
|
rm -rf dependencies/lib-$OUT
|
|
mkdir -p dependencies/lib-$OUT
|
|
|
|
cd dependencies
|
|
git clone https://github.com/libressl-portable/portable.git libressl
|
|
cd libressl
|
|
./autogen.sh
|
|
./configure --host=$TOOL
|
|
make clean
|
|
make -j8
|
|
|
|
mkdir -p ../include/openssl
|
|
mkdir -p ../include-$OUT/openssl
|
|
cp -rfv crypto/.libs/libcrypto.a ../lib-$OUT
|
|
cp -rfv ssl/.libs/libssl.a ../lib-$OUT
|
|
cp -rfv include/openssl/* ../include-$OUT/openssl
|