]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/lto-readonly-lib/Makefile
Rollup merge of #101101 - RalfJung:read-pointer-as-bytes, r=oli-obk
[rust.git] / src / test / run-make-fulldeps / lto-readonly-lib / Makefile
1 include ../tools.mk
2
3 all:
4         $(RUSTC) lib.rs
5
6         # the compiler needs to copy and modify the rlib file when performing
7         # LTO, so we should ensure that it can cope with the original rlib
8         # being read-only.
9         chmod 444 $(TMPDIR)/*.rlib
10
11         $(RUSTC) main.rs -C lto
12         $(call RUN,main)