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

# ignore-cross-compile
# ignore-wasm

all:
	$(RUSTC) --crate-type rlib -lbar_cli bar.rs
	$(RUSTC) foo.rs -lfoo_cli -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"

    # make sure that foo_cli and glib-2.0 are not consecutively present
	cat $(TMPDIR)/libs.txt | grep -Fv "foo_cli -lfoo_cli"
	cat $(TMPDIR)/libs.txt | grep -Fv "glib-2.0 -lglib-2.0"