forgot a part (NW)

This commit is contained in:
Cowering 2015-07-23 10:36:42 -05:00
parent 0eef937287
commit 0b77d57e1d

View File

@ -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