Updated mingw toolchain to 64-bit 4.8.1.

This commit is contained in:
bkaradzic
2013-12-24 20:18:23 -08:00
parent 1dcf9b479a
commit 83a178dc57
3 changed files with 3 additions and 5 deletions

View File

@@ -1 +0,0 @@
#include <tr1/unordered_map>

View File

@@ -1 +0,0 @@
#include <tr1/unordered_set>

View File

@@ -110,8 +110,8 @@ function toolchain(_buildDir, _libDir)
end
if "mingw" == _OPTIONS["gcc"] then
premake.gcc.cc = "$(MINGW)/bin/mingw32-gcc"
premake.gcc.cxx = "$(MINGW)/bin/mingw32-g++"
premake.gcc.cc = "$(MINGW)/bin/x86_64-w64-mingw32-gcc"
premake.gcc.cxx = "$(MINGW)/bin/x86_64-w64-mingw32-g++"
premake.gcc.ar = "$(MINGW)/bin/ar"
location (_buildDir .. "projects/" .. _ACTION .. "-mingw")
end
@@ -278,7 +278,7 @@ function toolchain(_buildDir, _libDir)
defines { "WIN32" }
includedirs { bxDir .. "include/compat/mingw" }
buildoptions {
"-std=c++0x",
"-std=c++11",
"-U__STRICT_ANSI__",
"-Wunused-value",
"-fdata-sections",