File tree Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,16 @@ jobs:
183
183
build : |
184
184
yarn build
185
185
strip -x *.node
186
+ - host : macos-12
187
+ target : aarch64-apple-darwin
188
+ build : |
189
+ sudo rm -Rf /Library/Developer/CommandLineTools/SDKs/*;
190
+ export CC=$(xcrun -f clang);
191
+ export CXX=$(xcrun -f clang++);
192
+ SYSROOT=$(xcrun --sdk macosx --show-sdk-path);
193
+ export CFLAGS="-isysroot $SYSROOT -isystem $SYSROOT";
194
+ yarn build --target aarch64-apple-darwin
195
+ strip -x *.node
186
196
- host : windows-2022
187
197
build : yarn build
188
198
target : x86_64-pc-windows-msvc
Original file line number Diff line number Diff line change 16
16
build : |
17
17
yarn build
18
18
strip -x *.node
19
+ - host : macos-12
20
+ target : aarch64-apple-darwin
21
+ build : |
22
+ sudo rm -Rf /Library/Developer/CommandLineTools/SDKs/*;
23
+ export CC=$(xcrun -f clang);
24
+ export CXX=$(xcrun -f clang++);
25
+ SYSROOT=$(xcrun --sdk macosx --show-sdk-path);
26
+ export CFLAGS="-isysroot $SYSROOT -isystem $SYSROOT";
27
+ yarn build --target aarch64-apple-darwin
28
+ strip -x *.node
19
29
- host : windows-2022
20
30
build : yarn build
21
31
target : x86_64-pc-windows-msvc
Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ### Added
6
+
7
+ - Package for ` aarch64-apple-darwin ` .
8
+
5
9
### Changed
6
10
7
11
- Avoid loading additional dependencies for WASM resulting in ~ 6% module size reduction.
You can’t perform that action at this time.
0 commit comments