forked from ish-app/ish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xcode-meson.sh
executable file
·51 lines (47 loc) · 1.06 KB
/
xcode-meson.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash -x
mkdir -p $MESON_BUILD_DIR
cd $MESON_BUILD_DIR
config=$(meson introspect --buildoptions)
if [[ $? -ne 0 ]]; then
export CC="env -u SDKROOT -u IPHONEOS_DEPLOYMENT_TARGET clang"
crossfile=cross.txt
echo $ARCHS
arch=${ARCHS%% *}
meson_arch=$arch
case "$arch" in
arm64)
meson_arch=aarch64
;;
esac
cat > $crossfile <<EOF
[binaries]
c = 'clang'
ar = 'ar'
[host_machine]
system = 'darwin'
cpu_family = '$meson_arch'
cpu = '$meson_arch'
endian = 'little'
[properties]
c_args = ['-arch', '$arch']
needs_exe_wrapper = true
EOF
meson $SRCROOT --cross-file $crossfile
fi
buildtype=debug
b_ndebug=false
if [[ $CONFIGURATION == Release ]]; then
buildtype=debugoptimized
b_ndebug=true
fi
b_sanitize=none
log=$ISH_LOG
log_handler=nslog
jit=true
for var in buildtype log b_ndebug b_sanitize log_handler jit; do
old_value=$(jq -r ".[] | select(.name==\"$var\") | .value" <<< $config)
new_value=${!var}
if [[ $old_value != $new_value ]]; then
meson configure -D$var=$new_value
fi
done