changeset 1588:71ad691baeb2

Hack to make compiling the tango 0.99.8 runtime work. The gc has no module statements and the new frontend fails to find the imports. So I add an explicit include path to the runtime gc directory.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 10:54:40 +0100
parents def7a1d494fd
children 27948fd2e7ef
files runtime/CMakeLists.txt
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/CMakeLists.txt	Fri Nov 06 23:58:01 2009 +0100
+++ b/runtime/CMakeLists.txt	Sat Nov 07 10:54:40 2009 +0100
@@ -120,7 +120,7 @@
 		OUTPUT
 			${OUTPUT_O}
 			${OUTPUT_BC}
-		COMMAND ${LDC_LOC} -c -I${INCDIR} -output-bc ${INPUT_D} -of${OUTPUT_O} ${D_FLAGS} ${MOREFLAGS}
+		COMMAND ${LDC_LOC} -c -I${INCDIR} -I${RUNTIME_GC_DIR} -output-bc ${INPUT_D} -of${OUTPUT_O} ${D_FLAGS} ${MOREFLAGS}
 		DEPENDS ${LDC_LOC}
 			${INPUT_D}
 			${LDC_IMPORTS}