mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 19:54:24 +00:00
13 lines
380 B
Makefile
13 lines
380 B
Makefile
include ../tools.mk
|
|
|
|
PROFILE_DIR=$(TMPDIR)/profiles
|
|
|
|
all: check_inline check_filter
|
|
|
|
check_inline:
|
|
$(RUSTC) -O foo.rs --crate-type=lib -Cremark=all -Zremark-dir=$(PROFILE_DIR)
|
|
cat $(PROFILE_DIR)/*.opt.yaml | $(CGREP) -e "inline"
|
|
check_filter:
|
|
$(RUSTC) -O foo.rs --crate-type=lib -Cremark=foo -Zremark-dir=$(PROFILE_DIR)
|
|
cat $(PROFILE_DIR)/*.opt.yaml | $(CGREP) -e -v "inline"
|