]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/hotplug_codegen_backend/Makefile
Auto merge of #52046 - cramertj:fix-generator-mir, r=eddyb
[rust.git] / src / test / run-make-fulldeps / hotplug_codegen_backend / Makefile
1 include ../tools.mk
2
3 all:
4         /bin/echo || exit 0 # This test requires /bin/echo to exist
5         $(RUSTC) the_backend.rs --crate-name the_backend --crate-type dylib \
6                 -o $(TMPDIR)/the_backend.dylib
7         $(RUSTC) some_crate.rs --crate-name some_crate --crate-type lib -o $(TMPDIR)/some_crate \
8                 -Z codegen-backend=$(TMPDIR)/the_backend.dylib -Z unstable-options
9         grep -x "This has been \"compiled\" successfully." $(TMPDIR)/some_crate