forked from OSchip/llvm-project
21 lines
996 B
Plaintext
21 lines
996 B
Plaintext
# RUN: lld -flavor link2 /entry:main /subsystem:console /machine:x64 \
|
|
# RUN: /out:%t.exe %p/Inputs/ret42.obj
|
|
# RUN: llvm-readobj -file-headers %t.exe | FileCheck -check-prefix=AMD64 %s
|
|
# RUN: lld -flavor link2 /entry:main /subsystem:console /machine:x64 \
|
|
# RUN: /out:%t.exe %p/Inputs/ret42.lib
|
|
# RUN: llvm-readobj -file-headers %t.exe | FileCheck -check-prefix=AMD64 %s
|
|
# RUN: lld -flavor link2 /entry:main /subsystem:console /out:%t.exe \
|
|
# RUN: %p/Inputs/ret42.obj
|
|
# RUN: llvm-readobj -file-headers %t.exe | FileCheck -check-prefix=AMD64 %s
|
|
# RUN: lld -flavor link2 /entry:main /subsystem:console /out:%t.exe \
|
|
# RUN: %p/Inputs/ret42.lib
|
|
# RUN: llvm-readobj -file-headers %t.exe | FileCheck -check-prefix=AMD64 %s
|
|
|
|
AMD64: Machine: IMAGE_FILE_MACHINE_AMD64
|
|
|
|
# RUN: lld -flavor link2 /entry:main /subsystem:console /machine:x86 \
|
|
# RUN: /out:%t.exe %p/Inputs/ret42.obj
|
|
# RUN: llvm-readobj -file-headers %t.exe | FileCheck -check-prefix=I386 %s
|
|
|
|
I386: Machine: IMAGE_FILE_MACHINE_I386
|