From bd0feee96acf2db847cdc94861eea8115795a509 Mon Sep 17 00:00:00 2001 From: kleuter Date: Sun, 22 Nov 2020 13:11:46 +0100 Subject: [PATCH] 5.13.2: compile_mac_arm.sh --- 5.13.2/compile_mac_arm.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 5.13.2/compile_mac_arm.sh diff --git a/5.13.2/compile_mac_arm.sh b/5.13.2/compile_mac_arm.sh new file mode 100644 index 0000000..7554803 --- /dev/null +++ b/5.13.2/compile_mac_arm.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +export PATH=$PATH:/usr/local/Qt-5.13.2/bin + +cd qtbase + +./configure $OPTIONS QMAKE_APPLE_DEVICE_ARCHS=arm64 -opensource -confirm-license -nomake examples -nomake tests -no-openssl -securetransport + +make -j 8 +echo maki | sudo -S sudo make install + +cd ../qttools +qmake +make -j 8 +echo maki | sudo -S sudo make install + +cd ../qtmacextras +qmake +make -j 8 +echo maki | sudo -S sudo make install + +cd /usr/local +zip -r ~/Desktop/qt5.13.2_mac_arm.zip Qt-5.13.2/* \ No newline at end of file