Skip to content

Instantly share code, notes, and snippets.

@thewh1teagle
Created December 8, 2024 15:10
Show Gist options
  • Save thewh1teagle/d8992001ed4e86cf953eb72e3719af49 to your computer and use it in GitHub Desktop.
Save thewh1teagle/d8992001ed4e86cf953eb72e3719af49 to your computer and use it in GitHub Desktop.
Build for android and ios with clang

Build for android and ios with clang

# IOS arm64
xcrun --sdk iphoneos --show-sdk-path
clang -target arm64-apple-ios -isysroot $(xcrun --sdk iphoneos --show-sdk-path) -o main main.c

# Android arm64
export NDK="$HOME/Library/Android/sdk/ndk/$(ls -1 $HOME/Library/Android/sdk/ndk | sort | tail -n 1)"
export CC="$NDK/toolchains/llvm/prebuilt/darwin-x86_64/bin/aarch64-linux-android35-clang"
export CXX="$NDK/toolchains/llvm/prebuilt/darwin-x86_64/bin/aarch64-linux-android35-clang++"
$CC main.c -o main
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment