diff premake.lua @ 285:297690b5d4a5 trunk

[svn r306] Fixed: it's now possible to compile and link llvmdc with MinGW32 and msys on Win32 :D I tried it myself ;) Building the runtime still needs some work, but it's a step in the right direction.
author lindquist
date Sat, 21 Jun 2008 03:14:49 +0200
parents 23d0d9855cad
children 895e1b50cf2a
line wrap: on
line diff
--- a/premake.lua	Sat Jun 21 02:48:53 2008 +0200
+++ b/premake.lua	Sat Jun 21 03:14:49 2008 +0200
@@ -2,7 +2,11 @@
 
 -- options
 OPAQUE_VTBLS = 1
-USE_BOEHM_GC = 1
+if OS == "windows" then
+	USE_BOEHM_GC = 0
+else
+	USE_BOEHM_GC = 1
+end
 
 -- idgen
 package = newpackage()