diff options
Diffstat (limited to 'tests/run-make-fulldeps/c-dynamic-dylib/Makefile')
-rw-r--r-- | tests/run-make-fulldeps/c-dynamic-dylib/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/run-make-fulldeps/c-dynamic-dylib/Makefile b/tests/run-make-fulldeps/c-dynamic-dylib/Makefile new file mode 100644 index 000000000..ac6877892 --- /dev/null +++ b/tests/run-make-fulldeps/c-dynamic-dylib/Makefile @@ -0,0 +1,12 @@ +include ../tools.mk + +# ignore-macos +# +# This hits an assertion in the linker on older versions of osx apparently + +all: $(call DYLIB,cfoo) + $(RUSTC) foo.rs -C prefer-dynamic + $(RUSTC) bar.rs + $(call RUN,bar) + $(call REMOVE_DYLIBS,cfoo) + $(call FAIL,bar) |