mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-04 09:00:33 +03:00
21 lines
919 B
Makefile
21 lines
919 B
Makefile
// Test passing of LLVM bitcode file with Linker Options set
|
|
|
|
// LLVM >= 5.0 uses llvm.linker.options instead. See link_bitcode_libs_500.d.
|
|
// REQUIRES: atmost_llvm400
|
|
|
|
// Linker Options are currently only set on Windows platform, so we must (cross-)compile to Windows
|
|
// REQUIRES: target_X86
|
|
|
|
// RUN: %ldc -mtriple=x86_64-windows -c -output-bc %S/inputs/link_bitcode_libs_input.d -of=%t.bc \
|
|
// RUN: && %ldc -mtriple=x86_64-windows -c -singleobj -output-ll %t.bc %s -of=%t.ll \
|
|
// RUN: && FileCheck %s < %t.ll
|
|
|
|
pragma(lib, "library_one");
|
|
pragma(lib, "library_two");
|
|
|
|
// CHECK: !"Linker Options", ![[ATTR_TUPLE:[0-9]+]]
|
|
// CHECK: ![[ATTR_TUPLE]] = !{![[ATTR_LIB1:[0-9]+]], ![[ATTR_LIB2:[0-9]+]], ![[ATTR_LIB3:[0-9]+]], ![[ATTR_LIB4:[0-9]+]]}
|
|
// CHECK: ![[ATTR_LIB1]]{{.*}}library_one
|
|
// CHECK: ![[ATTR_LIB2]]{{.*}}library_two
|
|
// CHECK: ![[ATTR_LIB3]]{{.*}}imported_one
|
|
// CHECK: ![[ATTR_LIB4]]{{.*}}imported_two
|