]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Driver/msvc-link.c
Vendor import of clang trunk r238337:
[FreeBSD/FreeBSD.git] / test / Driver / msvc-link.c
1 // RUN: %clang -target i686-pc-windows-msvc -### %s 2>&1 | FileCheck --check-prefix=BASIC %s
2 // BASIC: link.exe"
3 // BASIC: "-out:a.exe"
4 // BASIC: "-defaultlib:libcmt"
5 // BASIC: "-nologo"
6
7 // RUN: %clang -target i686-pc-windows-msvc -shared -o a.dll -### %s 2>&1 | FileCheck --check-prefix=DLL %s
8 // DLL: link.exe"
9 // DLL: "-out:a.dll"
10 // DLL: "-defaultlib:libcmt"
11 // DLL: "-nologo"
12 // DLL: "-dll"