blob: a93ecaf9b6380768573a016701243c2e7a7efcfc [file] [log] [blame]
Hans Wennborge4c47f22015-03-04 23:16:21 +00001// 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"