Link the fuzzer crate to librustc again

This commit is contained in:
Brian Anderson 2011-07-04 15:30:28 -07:00
parent 5c9fb0bc98
commit ccf6112f15
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@
FUZZER_CRATE := $(S)src/fuzzer/fuzzer.rc
FUZZER_INPUTS := $(wildcard $(addprefix $(S)src/fuzzer/, *.rs))
stage1/fuzzer$(X): $(FUZZER_CRATE) $(FUZZER_INPUTS) $(SREQ1)
stage1/fuzzer$(X): $(FUZZER_CRATE) $(FUZZER_INPUTS) $(SREQ1) \
stage1/lib/$(CFG_LIBRUSTC)
@$(call E, compile_and_link: $@)
$(STAGE1) -o $@ $<

View File

@ -1,6 +1,7 @@
// -*- rust -*-
use std;
use rustc;
mod fuzzer;