diff options
| author | Graydon Hoare <[email protected]> | 2011-03-19 18:33:32 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-19 18:34:49 -0700 |
| commit | 724a9a392abc979826c57b238ec25446fe55967b (patch) | |
| tree | 3bfcb1968b6a134da28f9c08d8ef0d88c5c9fa18 | |
| parent | Switch path-munge from sed to perl. (diff) | |
| download | rust-724a9a392abc979826c57b238ec25446fe55967b.tar.xz rust-724a9a392abc979826c57b238ec25446fe55967b.zip | |
Correct deps on stage0/glue.bc
| -rw-r--r-- | Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 33fdcdb9..8ddcc83a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -375,7 +375,8 @@ stage0/rustc$(X): $(S)src/$(COMPILER_CRATE) $(COMPILER_INPUTS) \ $(BOOT) -minimal -o $@ $< $(Q)chmod 0755 $@ -stage0/glue.bc: stage0/rustc$(X) rt/$(CFG_RUNTIME) stage0/$(CFG_STDLIB) +stage0/glue.bc: stage0/rustc$(X) stage0/$(CFG_STDLIB) \ + llvmext/$(CFG_LLVMEXT) rt/$(CFG_RUNTIME) @$(call E, generate: $@) $(STAGE0) -o $@ -glue |