blob: 1139822f4ea91be9a325d5b9971c2e726aa12e2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
include ../tools.mk
all:
$(RUSTC) m1.rs -C prefer-dynamic
$(RUSTC) m2.rs -C prefer-dynamic
$(RUSTC) m3.rs -C prefer-dynamic
$(RUSTC) m4.rs
$(call RUN,m4)
$(call REMOVE_DYLIBS,m1)
$(call REMOVE_DYLIBS,m2)
$(call REMOVE_DYLIBS,m3)
$(call FAIL,m4)
|