diff options
author | 2016-01-01 15:14:06 +0100 | |
---|---|---|
committer | 2016-01-01 15:14:06 +0100 | |
commit | 17f5c825f30d133cc2f239c997a9bd8a82754868 (patch) | |
tree | 9f36daa69dbfa02fa53eb695b785734303c22e6e /scripts/toolchain.lua | |
parent | 68161616d352c63fb56979e6ebca1633f2c073db (diff) |
missed this one (nw)
Diffstat (limited to 'scripts/toolchain.lua')
-rw-r--r-- | scripts/toolchain.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/toolchain.lua b/scripts/toolchain.lua index 13fe67eac1d..aea8caa6769 100644 --- a/scripts/toolchain.lua +++ b/scripts/toolchain.lua @@ -225,9 +225,9 @@ function toolchain(_buildDir, _subDir) if "mingw-clang" == _OPTIONS["gcc"] then - premake.gcc.cc = "$(CLANG)/bin/clang" - premake.gcc.cxx = "$(CLANG)/bin/clang++" - premake.gcc.ar = "$(CLANG)/bin/llvm-ar" + premake.gcc.cc = "clang" + premake.gcc.cxx = "clang++" + premake.gcc.ar = "llvm-ar" premake.gcc.llvm = true location (_buildDir .. "projects/" .. _subDir .. "/".. _ACTION .. "-mingw-clang") end |