5fb9cad38d
Right now the stage1/fuzzer crate will build but it's not linked to librustc because stage1/librustc won't link.
9 lines
272 B
Makefile
9 lines
272 B
Makefile
# At the moment the fuzzer only exists in stage1.
|
|
|
|
FUZZER_CRATE := $(S)src/fuzzer/fuzzer.rc
|
|
FUZZER_INPUTS := $(wildcard $(addprefix $(S)src/fuzzer/, *.rs))
|
|
|
|
stage1/fuzzer$(X): $(FUZZER_CRATE) $(FUZZER_INPUTS) $(SREQ1)
|
|
@$(call E, compile_and_link: $@)
|
|
$(STAGE1) -o $@ $<
|