-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
update.sh
executable file
·152 lines (126 loc) · 4.83 KB
/
update.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
#!/usr/bin/env bash
set -euo pipefail
# TODO: delete this shell script and move all this logic into generator.zig
#`git clone --depth 1` but at a specific revision
git_clone_rev() {
repo=$1
rev=$2
dir=$3
rm -rf "$dir"
mkdir "$dir"
pushd "$dir"
git init -q
git fetch "$repo" "$rev" --depth 1
git checkout -q FETCH_HEAD
popd
}
git_clone_rev https://github.com/hexops/xcode-frameworks 3d1d9613c39bfc2ebfa2551626e87b7f38e0a29f xcode-frameworks
zig build -Doptimize=ReleaseFast
rm -f src/metal.zig
echo "Generating Metal"
echo "
#include <Metal/Metal.h>
" > headers.m
clang headers.m -F ./xcode-frameworks/Frameworks -Xclang -ast-dump=json -fsyntax-only -Wno-deprecated-declarations > headers.json
cat metal_manual.zig > src/metal.zig
./zig-out/bin/generator --framework Metal >> src/metal.zig
rm headers.json headers.m
rm -f src/avf_audio.zig
echo "Generating AVFAudio"
cp avf_audio_headers.m headers.m
clang headers.m -F ./xcode-frameworks/Frameworks -Xclang -ast-dump=json -fsyntax-only -Wno-deprecated-declarations > headers.json
cat avf_audio_manual.zig > src/avf_audio.zig
./zig-out/bin/generator --framework AVFAudio >> src/avf_audio.zig
rm headers.json headers.m
rm -f src/core_midi.zig
echo "Generating CoreMIDI"
echo "
#include <CoreMIDI/MidiServices.h>
" > headers.m
clang headers.m -F ./xcode-frameworks/Frameworks -Xclang -ast-dump=json -fsyntax-only -Wno-deprecated-declarations > headers.json
cat core_midi_manual.zig > src/core_midi.zig
./zig-out/bin/generator --framework CoreMIDI >> src/core_midi.zig
rm headers.json headers.m
rm -f src/app_kit.zig
echo "Generating AppKit"
echo "
#include <AppKit/AppKit.h>
" > headers.m
clang headers.m -F ./xcode-frameworks/Frameworks -Xclang -ast-dump=json -fsyntax-only -Wno-deprecated-declarations -Wno-availability > headers.json
cat app_kit_manual.zig > src/app_kit.zig
./zig-out/bin/generator --framework AppKit >> src/app_kit.zig
rm headers.json headers.m
zig fmt .
# TODO: generate src/foundation/ns.zig
# TODO: generate src/quartz_core/ca.zig
# Generate assembly. We currently target iOS 15+ and macOS 12+.
# TODO: Add arm64-apple-ios15 and x86_64-apple-ios15-simulator to the targets once we get their SDKs in xcode-frameworks
for pair in \
'MACHAppDelegate_aarch64-macos.s aarch64-macos.12.0' \
'MACHAppDelegate_x86_64-macos.s x86_64-macos.12.0'
do
dst=${pair%% *}
target=${pair#* }
zig cc -c MACHAppDelegate.m \
-target "$target" \
-S -Os -fomit-frame-pointer -fobjc-arc -fno-objc-exceptions \
-o "$dst" \
-iframework ./xcode-frameworks/Frameworks \
-isystem ./xcode-frameworks/include
cat "$dst" |
sed 's/\x01/\\x01/g' |
sed 's/ *; .*//g' | # Strip comments at the end of lines
sed 's/ *## .*//g' |
sed '/^ \.build_version .*/d' | # Strip OS-specific version info
sed '/^; .*/d' | # Strip whole-line comments
sed '/^## .*/d' > "$dst.tmp"
mv "$dst.tmp" "$dst"
done
mv MACHAppDelegate_aarch64-macos.s MACHAppDelegate_arm64_apple_macos12.s
mv MACHAppDelegate_x86_64-macos.s MACHAppDelegate_x86_64_apple_macos12.s
for pair in \
'MACHWindowDelegate_aarch64-macos.s aarch64-macos.12.0' \
'MACHWindowDelegate_x86_64-macos.s x86_64-macos.12.0'
do
dst=${pair%% *}
target=${pair#* }
zig cc -c MACHWindowDelegate.m \
-target "$target" \
-S -Os -fomit-frame-pointer -fobjc-arc -fno-objc-exceptions \
-o "$dst" \
-iframework ./xcode-frameworks/Frameworks \
-isystem ./xcode-frameworks/include
cat "$dst" |
sed 's/\x01/\\x01/g' |
sed 's/ *; .*//g' | # Strip comments at the end of lines
sed 's/ *## .*//g' |
sed '/^ \.build_version .*/d' | # Strip OS-specific version info
sed '/^; .*/d' | # Strip whole-line comments
sed '/^## .*/d' > "$dst.tmp"
mv "$dst.tmp" "$dst"
done
mv MACHWindowDelegate_aarch64-macos.s MACHWindowDelegate_arm64_apple_macos12.s
mv MACHWindowDelegate_x86_64-macos.s MACHWindowDelegate_x86_64_apple_macos12.s
for pair in \
'MACHView_aarch64-macos.s aarch64-macos.12.0' \
'MACHView_x86_64-macos.s x86_64-macos.12.0'
do
dst=${pair%% *}
target=${pair#* }
zig cc -c MACHView.m \
-target "$target" \
-S -Os -fomit-frame-pointer -fobjc-arc -fno-objc-exceptions \
-o "$dst" \
-iframework ./xcode-frameworks/Frameworks \
-isystem ./xcode-frameworks/include
cat "$dst" |
sed 's/\x01/\\x01/g' |
sed 's/ *; .*//g' | # Strip comments at the end of lines
sed 's/ *## .*//g' |
sed '/^ \.build_version .*/d' | # Strip OS-specific version info
sed '/^; .*/d' | # Strip whole-line comments
sed '/^## .*/d' > "$dst.tmp"
mv "$dst.tmp" "$dst"
done
mv MACHView_aarch64-macos.s MACHView_arm64_apple_macos12.s
mv MACHView_x86_64-macos.s MACHView_x86_64_apple_macos12.s