comparison 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
comparison
equal deleted inserted replaced
284:70c370e97944 285:297690b5d4a5
1 project.name = llvmdc 1 project.name = llvmdc
2 2
3 -- options 3 -- options
4 OPAQUE_VTBLS = 1 4 OPAQUE_VTBLS = 1
5 USE_BOEHM_GC = 1 5 if OS == "windows" then
6 USE_BOEHM_GC = 0
7 else
8 USE_BOEHM_GC = 1
9 end
6 10
7 -- idgen 11 -- idgen
8 package = newpackage() 12 package = newpackage()
9 package.name = "idgen" 13 package.name = "idgen"
10 package.kind = "exe" 14 package.kind = "exe"