diff options
| -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 |