blob: 459db0dfdb2f71f9e0602afc2066f399d35a7077 (
plain)
1
2
3
4
5
6
7
8
|
# ignore-cross-compile
include ../tools.mk
all:
$(RUSTC) rlib.rs --crate-type=rlib --crate-type=dylib
$(RUSTC) dylib.rs # no -Cprefer-dynamic so statically linking librlib.rlib
$(call REMOVE_DYLIBS,rlib) # remove librlib.so to test that prog.rs doesn't get confused about the removed dylib version of librlib
$(RUSTC) prog.rs && exit 1 || exit 0
|