]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/c-dynamic-dylib/Makefile
Rollup merge of #49625 - bjorn3:miri_access_memory_kind, r=oli-obk
[rust.git] / src / test / run-make-fulldeps / c-dynamic-dylib / Makefile
1 -include ../tools.mk
2
3 # This hits an assertion in the linker on older versions of osx apparently
4 ifeq ($(shell uname),Darwin)
5 all:
6         echo ignored
7 else
8 all: $(call DYLIB,cfoo)
9         $(RUSTC) foo.rs -C prefer-dynamic
10         $(RUSTC) bar.rs
11         $(call RUN,bar)
12         $(call REMOVE_DYLIBS,cfoo)
13         $(call FAIL,bar)
14 endif