mirror of
https://git.crafterpika.cc/crafterpika/SplatTool-public.git
synced 2026-08-17 10:42:15 +02:00
7 lines
268 B
Shell
Executable file
7 lines
268 B
Shell
Executable file
#!/bin/zsh
|
|
clang -target x86_64-apple-macos12.7 -o root_helper_x86 root_helper.c
|
|
clang -target arm64-apple-macos12.7 -o root_helper_arm64 root_helper.c
|
|
|
|
lipo -create root_helper_x86 root_helper_arm64 -output root_helper
|
|
rm -rf root_helper_x86
|
|
rm -rf root_helper_arm64
|