[svn r39] * Updated to DMD 1.022 with the exception of:

Bugzilla 278: dmd.conf search path doesn't work

This fix was causing crashes for me :/ So for it's the old behaviour
This commit is contained in:
Tomas Lindquist Olsen
2007-10-09 06:21:30 +02:00
parent 3db5b9bb98
commit e251fc42b2
15 changed files with 277 additions and 114 deletions

View File

@@ -1,5 +1,4 @@
project.name = llvmdc
project.bindir = "bin"
package = newpackage()
package.name = "idgen"
@@ -7,7 +6,7 @@ package.kind = "exe"
package.language = "c++"
package.files = { "dmd/idgen.c" }
package.buildoptions = { "-x c++" }
package.postbuildcommands = { "bin/idgen", "mv -f id.c id.h dmd" }
package.postbuildcommands = { "./idgen", "mv -f id.c id.h dmd" }
package = newpackage()
package.name = "impcnvgen"
@@ -15,9 +14,10 @@ package.kind = "exe"
package.language = "c++"
package.files = { "dmd/impcnvgen.c" }
package.buildoptions = { "-x c++" }
package.postbuildcommands = { "bin/impcnvgen", "mv -f impcnvtab.c dmd" }
package.postbuildcommands = { "./impcnvgen", "mv -f impcnvtab.c dmd" }
package = newpackage()
package.bindir = "bin"
package.name = "llvmdc"
package.kind = "exe"
package.language = "c++"