blob: e78b83890ed3b1a7f70d57b1a3c0efad481c76e1 (
plain)
1
2
3
4
5
6
7
8
9
|
include ../tools.mk
# Verify that the impl_* symbols are preserved. #108030
# only-x86_64-unknown-linux-gnu
# min-llvm-version: 17
all:
$(RUSTC) -Cdebuginfo=0 -Copt-level=3 lib.rs
$(RUSTC) -Clto=fat -Cdebuginfo=0 -Copt-level=3 main.rs
|