mirror of
https://github.com/crystalidea/qt-build-tools.git
synced 2024-11-22 10:40:06 +08:00
5.15.2: cross compile script
This commit is contained in:
parent
b893aebe69
commit
30bfc2f5ec
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
export PATH=$PATH:/usr/local/Qt-5.15.2/bin
|
||||
export PATH=$PATH:$(pwd)/qtbase/bin
|
||||
|
||||
cd qtbase
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
export PATH=$PATH:/usr/local/Qt-5.15.2/bin
|
||||
export PATH=$PATH:$(pwd)/qtbase/bin
|
||||
|
||||
cd qtbase
|
||||
|
||||
|
23
5.15.2/compile_mac_arm_cross.sh
Normal file
23
5.15.2/compile_mac_arm_cross.sh
Normal file
@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
export PATH=$PATH:$(pwd)/qtbase/bin
|
||||
|
||||
cd qtbase
|
||||
|
||||
./configure -device-option QMAKE_APPLE_DEVICE_ARCHS=arm64 -opensource -confirm-license -nomake examples -nomake tests -no-openssl -securetransport -prefix /usr/local/Qt-5.15.2-arm
|
||||
|
||||
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.15.2_mac_arm.zip Qt-5.15.2-arm/*
|
Loading…
Reference in New Issue
Block a user