File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
packages/host/src/node/prebuilds Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -11,16 +11,25 @@ export const ANDROID_TRIPLETS = [
1111export type AndroidTriplet = ( typeof ANDROID_TRIPLETS ) [ number ] ;
1212
1313export const APPLE_TRIPLETS = [
14- "arm64;x86_64-apple-darwin" ,
1514 "x86_64-apple-darwin" ,
1615 "arm64-apple-darwin" ,
16+ "arm64;x86_64-apple-darwin" ,
17+
1718 "arm64-apple-ios" ,
19+ "x86_64-apple-ios-sim" ,
1820 "arm64-apple-ios-sim" ,
21+ "arm64;x86_64-apple-ios-sim" ,
22+
1923 "arm64-apple-tvos" ,
20- "arm64-apple-tvos-sim" ,
2124 // "x86_64-apple-tvos",
25+ "x86_64-apple-tvos-sim" ,
26+ "arm64-apple-tvos-sim" ,
27+ "arm64;x86_64-apple-tvos-sim" ,
28+
2229 "arm64-apple-visionos" ,
30+ "x86_64-apple-visionos-sim" ,
2331 "arm64-apple-visionos-sim" ,
32+ "arm64;x86_64-apple-visionos-sim" ,
2433] as const ;
2534
2635export type AppleTriplet = ( typeof APPLE_TRIPLETS ) [ number ] ;
You can’t perform that action at this time.
0 commit comments