mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 10:13:54 +00:00
b99ace4179
Closes #108030. This issue has been resolved in LLVM 17.
10 lines
239 B
Makefile
10 lines
239 B
Makefile
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
|