You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.3 KiB
33 lines
1.3 KiB
# REQUIRES: x86
|
|
|
|
# RUN: yaml2obj %p/Inputs/export.yaml -o %t.archive.obj
|
|
# RUN: rm -f %t.archive.lib
|
|
# RUN: llvm-ar rcs %t.archive.lib %t.archive.obj
|
|
# RUN: llvm-mc -triple=x86_64-windows-msvc %s -filetype=obj -o %t.main.obj
|
|
|
|
# RUN: lld-link -dll -out:%t.dll -entry:main %t.main.obj -wholearchive:%t.archive.lib -implib:%t.lib
|
|
# RUN: llvm-readobj %t.lib | FileCheck %s -check-prefix CHECK-IMPLIB
|
|
|
|
# RUN: lld-link -dll -out:%t.dll -entry:main %t.main.obj -wholearchive %t.archive.lib -implib:%t.lib
|
|
# RUN: llvm-readobj %t.lib | FileCheck %s -check-prefix CHECK-IMPLIB
|
|
|
|
# RUN: lld-link -dll -out:%t.dll -entry:main %t.main.obj %t.archive.lib -wholearchive:%t.archive.lib -implib:%t.lib
|
|
# RUN: llvm-readobj %t.lib | FileCheck %s -check-prefix CHECK-IMPLIB
|
|
|
|
# PR43744: Test no inputs except a whole archive.
|
|
# RUN: lld-link -dll -out:%t.dll -noentry -wholearchive:%t.archive.lib -implib:%t.lib
|
|
# RUN: llvm-readobj %t.lib | FileCheck %s -check-prefix CHECK-IMPLIB
|
|
|
|
# RUN: mkdir -p %t.dir
|
|
# RUN: cp %t.archive.lib %t.dir/foo.lib
|
|
# RUN: lld-link -dll -out:%t.dll -entry:main -libpath:%t.dir %t.main.obj %t.dir/./foo.lib -wholearchive:foo.lib -implib:%t.lib
|
|
# RUN: llvm-readobj %t.lib | FileCheck %s -check-prefix CHECK-IMPLIB
|
|
|
|
# CHECK-IMPLIB: Symbol: __imp_exportfn3
|
|
# CHECK-IMPLIB: Symbol: exportfn3
|
|
|
|
.global main
|
|
.text
|
|
main:
|
|
ret
|