2024-06-11 01:37:23 -05:00
|
|
|
# needs-force-clang-based-tests
|
|
|
|
|
|
|
|
# FIXME(#126180): This test doesn't actually run anywhere, because the only
|
|
|
|
# CI job that sets RUSTBUILD_FORCE_CLANG_BASED_TESTS runs very few tests.
|
2022-06-08 09:30:16 -05:00
|
|
|
|
|
|
|
# This test makes sure the embed bitcode in elf created with
|
|
|
|
# lto-embed-bitcode=optimized is valid llvm BC module.
|
|
|
|
|
2023-03-30 07:58:50 -05:00
|
|
|
include ../tools.mk
|
2022-06-08 09:30:16 -05:00
|
|
|
|
|
|
|
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
|