mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
26e1ce7394
apparently I missed some tests in the last commit. Rather than having dozens of tests use the long version, use the short version in `run-make` and the long version in `run-make-fulldeps` (which is now only three tests)
12 lines
467 B
Makefile
12 lines
467 B
Makefile
# needs-matching-clang
|
|
|
|
# This test makes sure the embed bitcode in elf created with
|
|
# lto-embed-bitcode=optimized is valid llvm BC module.
|
|
|
|
include ../tools.mk
|
|
|
|
all:
|
|
$(RUSTC) test.rs --target $(TARGET) -Clink-arg=-fuse-ld=lld -Clinker-plugin-lto -Clinker=$(CLANG) -Clink-arg=-Wl,--plugin-opt=-lto-embed-bitcode=optimized -Zemit-thin-lto=no
|
|
$(LLVM_BIN_DIR)/objcopy --dump-section .llvmbc=$(TMPDIR)/test.bc $(TMPDIR)/test
|
|
$(LLVM_BIN_DIR)/llvm-dis $(TMPDIR)/test.bc
|