This reverts commit 199c39748292cbc89cd148a0d8364ebb1014ec38. This time, clang-scan-deps's search for output argument in clang-cl command line will now ignore arguments preceded by "-Xclang". That way, it won't detect a /o argument in "-Xclang -ivfsoverlay -Xclang /opt/subpath" Initial patch description: clang-scan-deps contains some command line parsing and modifications. This patch adds support for clang-cl command options. Differential Revision: https://reviews.llvm.org/D92191
22 lines
743 B
C
22 lines
743 B
C
// RUN: rm -rf %t.dir
|
|
// RUN: rm -rf %t-cdb.json
|
|
// RUN: mkdir -p %t.dir
|
|
// Change file name to avoid false positives in CHECK, since "static-analyzer.c" is found in %S.
|
|
// RUN: cp %s %t.dir/static-analyzer_clang.c
|
|
// RUN: cp %s %t.dir/static-analyzer_clangcl.c
|
|
// RUN: mkdir %t.dir/Inputs
|
|
// RUN: cp %S/Inputs/header.h %t.dir/Inputs/analyze_header_input.h
|
|
// RUN: sed -e "s|DIR|%/t.dir|g" %S/Inputs/static-analyzer-cdb.json > %t-cdb.json
|
|
//
|
|
// RUN: clang-scan-deps -compilation-database %t-cdb.json -j 1 | FileCheck %s
|
|
|
|
#ifdef __clang_analyzer__
|
|
#include "Inputs/analyze_header_input.h"
|
|
#endif
|
|
|
|
// CHECK: static-analyzer_clang.c
|
|
// CHECK-NEXT: analyze_header_input.h
|
|
|
|
// CHECK: static-analyzer_clangcl.c
|
|
// CHECK-NEXT: analyze_header_input.h
|