comparison premake.lua @ 703:06576ece1a1b

Changed premake.lua to work with mingw. Implemented array operations, not perfect but ok for tonight. closes #89
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 13 Oct 2008 23:19:32 +0200
parents ed9a9e6dd1cc
children eed2de0c67a0
comparison
equal deleted inserted replaced
702:353d9d184091 703:06576ece1a1b
29 29
30 TRIPLE = ""; 30 TRIPLE = "";
31 if options["target-override"] then 31 if options["target-override"] then
32 TRIPLE = options["target-override"] 32 TRIPLE = options["target-override"]
33 else 33 else
34 local p = io.popen("./config.guess") 34 local p = io.popen("sh config.guess")
35 TRIPLE = p:read() 35 TRIPLE = p:read()
36 end 36 end
37 37
38 -- D version - don't change these !!! 38 -- D version - don't change these !!!
39 DMDV1 = "1" 39 DMDV1 = "1"