diff options
author | 2015-05-29 17:43:09 -0500 | |
---|---|---|
committer | 2015-05-29 17:43:09 -0500 | |
commit | f115ab2dd2fd42c3d90bdbd3ce16e091839df24e (patch) | |
tree | ef6e89d2f56844571b8dc5eec3826baafd18723b /scripts/toolchain.lua | |
parent | b834a345750804ebf1afc80ff47215beffcb939d (diff) |
Let subtarget MESS (not MAME, yet) compile with Windows GCC 5.1 and lto. I am told 'any' recent GCC for Windows has gcc-ar wrapper, if not, change back the line in toolchain.lua (NW)
Diffstat (limited to 'scripts/toolchain.lua')
-rw-r--r-- | scripts/toolchain.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index 91d1f29884e..d86c3d53f8f 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -199,7 +199,8 @@ function toolchain(_buildDir, _subDir) end premake.gcc.cc = "$(MINGW64)/bin/x86_64-w64-mingw32-gcc" premake.gcc.cxx = "$(MINGW64)/bin/x86_64-w64-mingw32-g++" - premake.gcc.ar = "$(MINGW64)/bin/ar" +-- premake.gcc.ar = "$(MINGW64)/bin/ar" + premake.gcc.ar = "$(MINGW64)/bin/gcc-ar" location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-mingw64-gcc") end |