Changeset 1588:71ad691baeb2
- Timestamp:
- 11/07/09 04:54:40
(2 years ago)
- Author:
- Christian Kamm <kamm incasoftware de>
- branch:
- default
- Message:
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.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r1498 |
r1588 |
|
| 121 | 121 | ${OUTPUT_O} |
|---|
| 122 | 122 | ${OUTPUT_BC} |
|---|
| 123 | | COMMAND ${LDC_LOC} -c -I${INCDIR} -output-bc ${INPUT_D} -of${OUTPUT_O} ${D_FLAGS} ${MOREFLAGS} |
|---|
| | 123 | COMMAND ${LDC_LOC} -c -I${INCDIR} -I${RUNTIME_GC_DIR} -output-bc ${INPUT_D} -of${OUTPUT_O} ${D_FLAGS} ${MOREFLAGS} |
|---|
| 124 | 124 | DEPENDS ${LDC_LOC} |
|---|
| 125 | 125 | ${INPUT_D} |
|---|