# HG changeset patch # User Christian Kamm # Date 1257587680 -3600 # Node ID 71ad691baeb2074733e7c3b5471ee8186d7846da # Parent def7a1d494fd644da264af5f90435b6dc6bae81d 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. diff -r def7a1d494fd -r 71ad691baeb2 runtime/CMakeLists.txt --- 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}