summaryrefslogtreecommitdiffstats
path: root/tests/run-make/print-native-static-libs/Makefile
blob: 98e72d7696f79033a6eb5f628a4d32a80531fc39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
include ../tools.mk

# ignore-cross-compile
# ignore-wasm

all:
	$(RUSTC) --crate-type rlib -lbar_cli bar.rs
	$(RUSTC) foo.rs -lfoo_cli --crate-type staticlib --print native-static-libs 2>&1 \
		| grep 'note: native-static-libs: ' \
		| sed 's/note: native-static-libs: \(.*\)/\1/' > $(TMPDIR)/libs.txt

	cat $(TMPDIR)/libs.txt | grep -F "glib-2.0" # in bar.rs
	cat $(TMPDIR)/libs.txt | grep -F "systemd" # in foo.rs
	cat $(TMPDIR)/libs.txt | grep -F "bar_cli"
	cat $(TMPDIR)/libs.txt | grep -F "foo_cli"