aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2016-08-23 13:23:25 -0300
committerGitHub <noreply@github.com>2016-08-23 13:23:25 -0300
commit9907ae567205777873e47b74c44d163367860d52 (patch)
tree09626863e8556a9803013a33ae3a5cef66cff258 /src
parent4c837a0c953f0dd83485d65979893c3c773eb1ba (diff)
parent00c12a63ed41c1506b84d5682d8c457c40ae8872 (diff)
downloadluarocks-9907ae567205777873e47b74c44d163367860d52.tar.gz
luarocks-9907ae567205777873e47b74c44d163367860d52.tar.bz2
luarocks-9907ae567205777873e47b74c44d163367860d52.zip
Merge pull request #608 from keplerproject/mingw
Run Windows tests with MinGW
Diffstat (limited to 'src')
-rw-r--r--src/luarocks/cfg.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/luarocks/cfg.lua b/src/luarocks/cfg.lua
index d84ebc6e..bcb30342 100644
--- a/src/luarocks/cfg.lua
+++ b/src/luarocks/cfg.lua
@@ -468,6 +468,7 @@ if cfg.platforms.mingw32 then
468 defaults.variables.LD = "mingw32-gcc" 468 defaults.variables.LD = "mingw32-gcc"
469 defaults.variables.CFLAGS = "-O2" 469 defaults.variables.CFLAGS = "-O2"
470 defaults.variables.LIBFLAG = "-shared" 470 defaults.variables.LIBFLAG = "-shared"
471 defaults.makefile = "Makefile"
471 defaults.external_deps_patterns = { 472 defaults.external_deps_patterns = {
472 bin = { "?.exe", "?.bat" }, 473 bin = { "?.exe", "?.bat" },
473 -- mingw lookup list from http://stackoverflow.com/a/15853231/1793220 474 -- mingw lookup list from http://stackoverflow.com/a/15853231/1793220