blob: 014ee01b1f28079d43e458f9d70d201efabbc1e0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- scripts/toolchain.lua.orig 2023-05-06 02:56:32 UTC
+++ scripts/toolchain.lua
@@ -60,7 +60,8 @@ function androidToolchainRoot()
local hostTags = {
windows = "windows-x86_64",
linux = "linux-x86_64",
- macosx = "darwin-x86_64"
+ macosx = "darwin-x86_64",
+ bsd = "freebsd-x86_64"
}
android.toolchainRoot = (os.getenv("ANDROID_NDK_HOME") or "") .. "/toolchains/llvm/prebuilt/" .. hostTags[os.get()]
end
|