File tree Expand file tree Collapse file tree 4 files changed +9
-22
lines changed
Expand file tree Collapse file tree 4 files changed +9
-22
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ SHARED_PATH="$SCRIPT_PATH/../shared"
66
77# Compiler settings
88if [[ " ${DEBUG_BUILD} " ]]; then
9- export FLAGS=" -g3 -O0 -fPIC -DDEBUG -arch arm64 "
9+ export FLAGS=" -g3 -O0 -fPIC -DDEBUG"
1010 export CMAKE_BUILD_TYPE=" Debug"
1111 export MESON_BUILD_TYPE=" debug"
1212else
13- export FLAGS=" -O3 -fPIC -DNDEBUG -arch arm64 "
13+ export FLAGS=" -O3 -fPIC -DNDEBUG"
1414 export CMAKE_BUILD_TYPE=" Release"
1515 export MESON_BUILD_TYPE=" release"
1616fi
@@ -22,11 +22,11 @@ export PKG_CONFIG_PATH="$INSTALL_PREFIX/lib/pkgconfig"
2222
2323# Shared options
2424export CMAKE_COMMAND=" cmake"
25- export CMAKE_OPTIONS=" -DCMAKE_OSX_ARCHITECTURES=arm64 "
25+ export CMAKE_OPTIONS=" "
2626export CONFIGURE=" ./configure"
27- export CONFIGURE_OPTIONS=" --host arm64-apple-macos13 "
27+ export CONFIGURE_OPTIONS=" "
2828export MAKE=" make -j$( sysctl -n hw.logicalcpu) "
29- export MESON_OPTIONS=" --cross-file= $SCRIPT_PATH /cross-compilation.meson "
29+ export MESON_OPTIONS=" "
3030export SED=" gsed"
3131
3232# Library specific options
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ brew list --formula
77
88# Uninstall already installed development libraries
99
10- brew uninstall composer
11- brew uninstall php
1210brew uninstall ant
1311brew uninstall gradle
1412brew uninstall maven
6664# Install build tools
6765brew install automake libtool gnu-sed nasm ossp-uuid ragel
6866
69- pip3 install setuptools
70- pip3 install meson==1.5.1
71- pip3 install ninja==1.11.1.1
67+ pip3 install --break-system-packages setuptools
68+ pip3 install --break-system-packages meson==1.5.1
69+ pip3 install --break-system-packages ninja==1.11.1.1
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ jobs:
122122
123123 build_macos :
124124 name : macOS arm64 static
125- runs-on : macos-13
125+ runs-on : macos-14
126126
127127 steps :
128128 - uses : actions/checkout@v5
You can’t perform that action at this time.
0 commit comments