rust/tests/run-make/a-b-a-linker-guard/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
625 B
Makefile
Raw Normal View History

# ignore-cross-compile
include ../tools.mk
2016-03-24 17:20:08 +00:00
2016-03-24 17:24:04 +00:00
# Test that if we build `b` against a version of `a` that has one set
# of types, it will not run with a dylib that has a different set of
# types.
# NOTE(eddyb) this test only works with the `legacy` mangling,
# and will probably get removed once `legacy` is gone.
2016-03-24 17:20:08 +00:00
all:
$(RUSTC) a.rs --cfg x -C prefer-dynamic -Z unstable-options -C symbol-mangling-version=legacy
$(RUSTC) b.rs -C prefer-dynamic -Z unstable-options -C symbol-mangling-version=legacy
2016-03-24 17:24:04 +00:00
$(call RUN,b)
$(RUSTC) a.rs --cfg y -C prefer-dynamic -Z unstable-options -C symbol-mangling-version=legacy
2016-03-24 17:24:04 +00:00
$(call FAIL,b)