diff options
| author | Graydon Hoare <[email protected]> | 2011-03-10 17:57:22 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-03-10 17:57:22 -0800 |
| commit | bc5a8393e714f05d2dbb5abf1ebb7ff6267f48fe (patch) | |
| tree | cb261b80ee0d9792ecb0294af7b1c1eb523797e6 /src/Makefile | |
| parent | Move the glue code to a .o file. This reduces how much asm we print (diff) | |
| download | rust-bc5a8393e714f05d2dbb5abf1ebb7ff6267f48fe.tar.xz rust-bc5a8393e714f05d2dbb5abf1ebb7ff6267f48fe.zip | |
Help extinguish fires.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 5d3057b5..21366b6b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -365,7 +365,7 @@ $(CFG_RUSTC): $(COMPILER_INPUTS) $(CFG_BOOT) $(CFG_RUNTIME) $(CFG_STDLIB) $(BOOT) -minimal -o $@ $< $(CFG_QUIET)chmod 0755 $@ -glue.bc: $(CFG_RUSTC) +glue.bc: $(CFG_RUSTC) $(CFG_RUNTIME) $(CFG_STDLIB) @$(call CFG_ECHO, generate: $@) $(RUSTC) -o $@ -glue |