diff options
author | Steve Wills <swills@FreeBSD.org> | 2018-03-28 15:18:54 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2018-03-28 15:18:54 +0000 |
commit | 998e20f344a1b21c8fc0f95a2e4016da7032c61a (patch) | |
tree | bbc4219f031ef49aa6beefab0238aa6fc1451ea8 /emulators/mame/files/patch-scripts_toolchain.lua | |
parent | www/nginx: make easier to read and maintain: (diff) |
emulators/mame: update to 0.195
PR: 226687
Submitted by: Ryo ONODERA <ryo@tetera.org>
Notes
Notes:
svn path=/head/; revision=465815
Diffstat (limited to 'emulators/mame/files/patch-scripts_toolchain.lua')
-rw-r--r-- | emulators/mame/files/patch-scripts_toolchain.lua | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/emulators/mame/files/patch-scripts_toolchain.lua b/emulators/mame/files/patch-scripts_toolchain.lua new file mode 100644 index 000000000000..6324872c164d --- /dev/null +++ b/emulators/mame/files/patch-scripts_toolchain.lua @@ -0,0 +1,21 @@ +--- scripts/toolchain.lua.orig 2018-02-27 15:59:06 UTC ++++ scripts/toolchain.lua +@@ -23,6 +23,7 @@ newoption { + { "android-x64", "Android - x64" }, + { "asmjs", "Emscripten/asm.js" }, + { "freebsd", "FreeBSD" }, ++ { "freebsd-clang", "FreeBSD (Clang)" }, + { "linux-gcc", "Linux (GCC compiler)" }, + { "linux-clang", "Linux (Clang compiler)" }, + { "ios-arm", "iOS - ARM" }, +@@ -168,6 +169,10 @@ function toolchain(_buildDir, _subDir) + location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-freebsd") + end + ++ if "freebsd-clang" == _OPTIONS["gcc"] then ++ location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-freebsd-clang") ++ end ++ + if "netbsd" == _OPTIONS["gcc"] then + location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-netbsd") + end |