]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/issue-14500/Makefile
Merge commit 'e8dca3e87d164d2806098c462c6ce41301341f68' into sync_from_cg_gcc
[rust.git] / src / test / run-make-fulldeps / issue-14500 / Makefile
1 -include ../tools.mk
2
3 # Test to make sure that reachable extern fns are always available in final
4 # productcs, including when LTO is used. In this test, the `foo` crate has a
5 # reahable symbol, and is a dependency of the `bar` crate. When the `bar` crate
6 # is compiled with LTO, it shouldn't strip the symbol from `foo`, and that's the
7 # only way that `foo.c` will successfully compile.
8
9 all:
10         $(RUSTC) foo.rs --crate-type=rlib
11         $(RUSTC) bar.rs --crate-type=staticlib -C lto -L. -o $(TMPDIR)/libbar.a
12         $(CC) foo.c $(TMPDIR)/libbar.a $(EXTRACFLAGS) $(call OUT_EXE,foo)
13         $(call RUN,foo)