mirror of
https://github.com/crystalidea/qt-build-tools.git
synced 2024-11-22 19:00:04 +08:00
5.6.2: mac compile with openssl OR securetransport
This commit is contained in:
parent
315d294aca
commit
469e590394
@ -3,7 +3,38 @@
|
||||
export PATH=$PATH:/usr/local/Qt-5.6.2/bin
|
||||
|
||||
cd qtbase
|
||||
./configure -opensource -no-openssl -no-securetransport -nomake examples -nomake tests
|
||||
|
||||
if [[ $1 == openssl ]]; then
|
||||
|
||||
# download openssl
|
||||
curl -O https://www.openssl.org/source/old/1.0.2/openssl-1.0.2l.tar.gz
|
||||
tar -xvzf openssl-1.0.2l.tar.gz
|
||||
|
||||
# compile openssl
|
||||
cd openssl-1.0.2l
|
||||
./Configure darwin64-x86_64-cc --prefix=$PWD/dist
|
||||
make
|
||||
# print arch info (optional)
|
||||
lipo -info libssl.a
|
||||
lipo -info libcrypto.a
|
||||
make install
|
||||
cd ..
|
||||
|
||||
# continue
|
||||
|
||||
OPENSSL_LIBS='-L$PWD/openssl-1.0.2l/dist/lib -lssl -lcrypto' ./configure -opensource -confirm-license -no-securetransport -nomake examples -nomake tests -openssl-linked -I $PWD/openssl-1.0.2l/dist/include -L $PWD/openssl-1.0.2l/dist/lib
|
||||
|
||||
elif [[ $1 == securetransport ]]; then
|
||||
|
||||
./configure -opensource -confirm-license -nomake examples -nomake tests -no-openssl -securetransport
|
||||
|
||||
else
|
||||
|
||||
echo "Error: please specify which SSL layer to use (openssl or securetransport)"
|
||||
exit 1
|
||||
|
||||
fi
|
||||
|
||||
make
|
||||
echo 12345 | sudo -S sudo make install
|
||||
|
||||
|
@ -1,29 +0,0 @@
|
||||
Debug:
|
||||
|
||||
perl Configure debug-VC-WIN32 no-asm
|
||||
ms\do_ms
|
||||
nmake -f ms\nt.mak
|
||||
nmake -f ms\nt.mak install
|
||||
|
||||
Release:
|
||||
|
||||
perl Configure VC-WIN32 no-asm
|
||||
ms\do_ms
|
||||
nmake -f ms\nt.mak
|
||||
nmake -f ms\nt.mak install
|
||||
|
||||
x64:
|
||||
|
||||
Debug:
|
||||
|
||||
perl Configure debug-VC-WIN64A
|
||||
ms\do_win64a
|
||||
nmake -f ms\nt.mak
|
||||
nmake -f ms\nt.mak install
|
||||
|
||||
Release:
|
||||
|
||||
perl Configure VC-WIN64A
|
||||
ms\do_win64a
|
||||
nmake -f ms\nt.mak
|
||||
nmake -f ms\nt.mak install
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user