Files
ports/emulators/mame/patches/patch-scripts_toolchain_lua
2026-05-28 20:40:21 +00:00

16 lines
488 B
Plaintext

https://github.com/mamedev/mame/issues/11049
Index: scripts/toolchain.lua
--- scripts/toolchain.lua.orig
+++ scripts/toolchain.lua
@@ -58,7 +58,8 @@ function androidToolchainRoot()
local hostTags = {
windows = "windows-x86_64",
linux = "linux-x86_64",
- macosx = "darwin-x86_64"
+ macosx = "darwin-x86_64",
+ bsd = "openbsd-x86_64"
}
android.toolchainRoot = (os.getenv("ANDROID_NDK_HOME") or "") .. "/toolchains/llvm/prebuilt/" .. hostTags[os.get()]
end