diff options
| author | 2015-07-23 10:36:42 -0500 | |
|---|---|---|
| committer | 2015-07-23 10:36:42 -0500 | |
| commit | 0b77d57e1d390d2084df6378400228311fbaffef (patch) | |
| tree | 7406eb680b598910422ca6c954ce8be45518790b /scripts | |
| parent | 0eef93728779ac9968d6b1348e4db78a398fa6b0 (diff) | |
forgot a part (NW)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/toolchain.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index 589db7bc6fa..15948b563bb 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -194,7 +194,9 @@ function toolchain(_buildDir, _subDir) end premake.gcc.cc = "$(MINGW32)/bin/i686-w64-mingw32-gcc" premake.gcc.cxx = "$(MINGW32)/bin/i686-w64-mingw32-g++" - premake.gcc.ar = "$(MINGW32)/bin/ar" +-- premake.gcc.ar = "$(MINGW32)/bin/ar" +-- lto docs say to use gcc-ar so that plugin is completely setup + premake.gcc.ar = "$(MINGW32)/bin/gcc-ar" location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-mingw32-gcc") end @@ -204,7 +206,9 @@ 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" +-- lto docs say to use gcc-ar so that plugin is completely setup + premake.gcc.ar = "$(MINGW64)/bin/gcc-ar" location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-mingw64-gcc") end |
