comparison premake.lua @ 131:5825d48b27d1 trunk

[svn r135] * Merged DMD 1.025 * * Fixed a minor linking order mishap * * Added an command line option -annotate * * Fixed some problems with running optimizations * * Added std.stdio and dependencies to lphobos (still not 100% working, but compiles and links) * * Fixed problems with passing aggregate types to variadic functions * * Added initial code towards full GC support, currently based on malloc and friends, not all the runtime calls the GC yet for memory * * Fixed problems with resolving nested function context pointers for some heavily nested cases * * Redid function argument passing + other minor code cleanups, still lots to do on this end... *
author lindquist
date Fri, 04 Jan 2008 01:38:42 +0100
parents c42d245468ea
children 0e28624814e8
comparison
equal deleted inserted replaced
130:a7dfa0ed966c 131:5825d48b27d1
22 package.kind = "exe" 22 package.kind = "exe"
23 package.language = "c++" 23 package.language = "c++"
24 package.files = { matchfiles("dmd/*.c"), matchfiles("gen/*.cpp") } 24 package.files = { matchfiles("dmd/*.c"), matchfiles("gen/*.cpp") }
25 package.excludes = { "dmd/idgen.c", "dmd/impcnvgen.c" } 25 package.excludes = { "dmd/idgen.c", "dmd/impcnvgen.c" }
26 package.buildoptions = { "-x c++", "`llvm-config --cxxflags`" } 26 package.buildoptions = { "-x c++", "`llvm-config --cxxflags`" }
27 package.linkoptions = { "`llvm-config --libs all`", "`llvm-config --ldflags`" } 27 package.linkoptions = {
28 -- long but it's faster than just 'all'
29 "`llvm-config --libs core asmparser bitreader bitwriter support target transformutils scalaropts ipo instrumentation x86 powerpc`",
30 "`llvm-config --ldflags`"
31 }
28 package.defines = { "IN_LLVM", "_DH" } 32 package.defines = { "IN_LLVM", "_DH" }
29 package.config.Release.defines = { "LLVMD_NO_LOGGER" } 33 package.config.Release.defines = { "LLVMD_NO_LOGGER" }
30 package.config.Debug.buildoptions = { "-g -O0" } 34 package.config.Debug.buildoptions = { "-g -O0" }
31 --package.targetprefix = "llvm" 35 --package.targetprefix = "llvm"
32 package.includepaths = { ".", "dmd" } 36 package.includepaths = { ".", "dmd" }