rust/tests/run-make-fulldeps/lto-readonly-lib/Makefile
2023-01-11 09:32:08 +00:00

13 lines
275 B
Makefile

include ../tools.mk
all:
$(RUSTC) lib.rs
# the compiler needs to copy and modify the rlib file when performing
# LTO, so we should ensure that it can cope with the original rlib
# being read-only.
chmod 444 $(TMPDIR)/*.rlib
$(RUSTC) main.rs -C lto
$(call RUN,main)