├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── bootstrap.toml ├── common.sh ├── dist-macos.sh └── patches ├── support_ndk_llvm_r28.patch ├── support_ndk_llvm_r29.patch └── support_static_libcxx.patch /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ondk/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /src 2 | /out 3 | /dist 4 | /tmp 5 | /*.zip 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ondk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ondk/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ondk/HEAD/bootstrap.toml -------------------------------------------------------------------------------- /common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ondk/HEAD/common.sh -------------------------------------------------------------------------------- /dist-macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ondk/HEAD/dist-macos.sh -------------------------------------------------------------------------------- /patches/support_ndk_llvm_r28.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ondk/HEAD/patches/support_ndk_llvm_r28.patch -------------------------------------------------------------------------------- /patches/support_ndk_llvm_r29.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ondk/HEAD/patches/support_ndk_llvm_r29.patch -------------------------------------------------------------------------------- /patches/support_static_libcxx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ondk/HEAD/patches/support_static_libcxx.patch --------------------------------------------------------------------------------