[PATCH] D27869: [libFuzzer] Diff 24 - Use clang as linker in Windows, to properly include sanitizer libraries.

Reid Kleckner via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Dec 27 17:07:53 PST 2016


rnk added a comment.

In https://reviews.llvm.org/D27869#631541, @kcc wrote:

> How do we handle asan tests on windows? 
>  They should have the same problem.


The ASan lit tests? They invoke clang directly to perform the link, so the driver logic does it for us:

  // RUN: %clangxx_asan -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s

The "unit" tests I think also invoke clang directly.


Repository:
  rL LLVM

https://reviews.llvm.org/D27869





More information about the llvm-commits mailing list