mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
20 lines
700 B
Makefile
20 lines
700 B
Makefile
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"
|