mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-24 22:08:57 -04:00

Since SVN r314138, we check if the user has specified any particular alternative msvcrt/ucrt version, and skip the default -lmsvcrt in those cases. In addition to the existing names checked, we should also treat a plain -lucrt in the same way, mingw-w64 has now added a separate import library named libucrt.a, in addition to libucrtbase.a. Differential Revision: https://reviews.llvm.org/D49054 llvm-svn: 336654
13 lines
722 B
C
13 lines
722 B
C
// RUN: %clang -v -target i686-pc-windows-gnu -### %s 2>&1 | FileCheck -check-prefix=CHECK_DEFAULT %s
|
|
// RUN: %clang -v -target i686-pc-windows-gnu -lmsvcr120 -### %s 2>&1 | FileCheck -check-prefix=CHECK_MSVCR120 %s
|
|
// RUN: %clang -v -target i686-pc-windows-gnu -lucrtbase -### %s 2>&1 | FileCheck -check-prefix=CHECK_UCRTBASE %s
|
|
// RUN: %clang -v -target i686-pc-windows-gnu -lucrt -### %s 2>&1 | FileCheck -check-prefix=CHECK_UCRT %s
|
|
|
|
// CHECK_DEFAULT: "-lmingwex" "-lmsvcrt" "-ladvapi32"
|
|
// CHECK_MSVCR120: "-lmsvcr120"
|
|
// CHECK_MSVCR120-SAME: "-lmingwex" "-ladvapi32"
|
|
// CHECK_UCRTBASE: "-lucrtbase"
|
|
// CHECK_UCRTBASE-SAME: "-lmingwex" "-ladvapi32"
|
|
// CHECK_UCRT: "-lucrt"
|
|
// CHECK_UCRT-SAME: "-lmingwex" "-ladvapi32"
|