diff lphobos/build.sh @ 117:56a21f3e5d3e trunk

[svn r121] Finished ModuleInfo implementation. Static ctors/dtors now work according to spec. Changed class vtable types slightly in some cases. Overridden functions now always take the the type of the first class declaring the method as this parameter. This helps when using headers (w. implementation somewhere else)
author lindquist
date Mon, 26 Nov 2007 04:49:23 +0100
parents 27b9f749d9fe
children 36ab367572df
line wrap: on
line diff
--- a/lphobos/build.sh	Sun Nov 25 18:55:52 2007 +0100
+++ b/lphobos/build.sh	Mon Nov 26 04:49:23 2007 +0100
@@ -11,14 +11,12 @@
 echo "compiling common runtime"
 rebuild internal/arrays.d \
         internal/mem.d \
-        internal/moduleinit.d \
         -c -oqobj -dc=llvmdc-posix || exit 1
 
 echo "compiling module init backend"
 llvm-as -f -o=obj/moduleinit_backend.bc internal/moduleinit_backend.ll || exit 1
 llvm-link -f -o=../lib/llvmdcore.bc `ls obj/internal.*.bc` ../lib/llvmdcore.bc obj/moduleinit_backend.bc || exit 1
 
-
 echo "compiling typeinfo 1"
 rebuild typeinfos1.d -c -oqobj -dc=llvmdc-posix || exit 1
 llvm-link -f -o=../lib/llvmdcore.bc `ls obj/typeinfo1.*.bc` ../lib/llvmdcore.bc || exit 1