blob: f1fea99c5ee91c52a2482a9eccbf7074a337e012 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# ignore-cross-compile
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)
|