diff options
author | Alastair Hogge <agh@riseup.net> | 2023-05-31 10:28:33 +0200 |
---|---|---|
committer | Robert Clausecker <fuz@FreeBSD.org> | 2023-06-02 00:29:21 +0200 |
commit | 84c2e2313e7098468fc7e99ef95527903a7bc0b5 (patch) | |
tree | 2028dc802a870e8d69b94d92d0e5151e80fdc180 /emulators/mame/files/patch-scripts_toolchain.lua | |
parent | graphics/tippecanoe: new port (diff) |
emulators/mame: fix build on 14-CURRENT
- explicitly declare more system libraries
- port-{clippy,fmt,lint} maintenance
- separate out Qt machine debugger via OPTIONS
- separate out tools via OPTIONS
- remove licenses from ${PORTDOCS} as they are catalogued thru various ${LICENSE}* definitions
- add conditional logic for when OS ≧ 14 then explicitly build with LLVM
- a lot of the work in the post-patch target is on static files, so move most of this to files/
- files/patch-scripts_genie.lua is a fix for GCC
- sort targets into the order they run in.
PR: 271374
Diffstat (limited to 'emulators/mame/files/patch-scripts_toolchain.lua')
-rw-r--r-- | emulators/mame/files/patch-scripts_toolchain.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/mame/files/patch-scripts_toolchain.lua b/emulators/mame/files/patch-scripts_toolchain.lua index 014ee01b1f28..fe4f9966ff46 100644 --- a/emulators/mame/files/patch-scripts_toolchain.lua +++ b/emulators/mame/files/patch-scripts_toolchain.lua @@ -1,4 +1,4 @@ ---- scripts/toolchain.lua.orig 2023-05-06 02:56:32 UTC +--- scripts/toolchain.lua.orig 2023-05-27 02:18:45 UTC +++ scripts/toolchain.lua @@ -60,7 +60,8 @@ function androidToolchainRoot() local hostTags = { @@ -6,7 +6,7 @@ linux = "linux-x86_64", - macosx = "darwin-x86_64" + macosx = "darwin-x86_64", -+ bsd = "freebsd-x86_64" ++ bsd = "freebsd-x86_64" } android.toolchainRoot = (os.getenv("ANDROID_NDK_HOME") or "") .. "/toolchains/llvm/prebuilt/" .. hostTags[os.get()] end |