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
21 lines
592 B
C++
21 lines
592 B
C++
// RUN: rm -rf %t.dir
|
|
// RUN: rm -rf %t.cdb
|
|
// RUN: mkdir -p %t.dir
|
|
// RUN: cp %s %t.dir/no-werror_input.cpp
|
|
// RUN: cp %s %t.dir/no-werror_input_clangcl.cpp
|
|
// RUN: mkdir %t.dir/Inputs
|
|
// RUN: cp %S/Inputs/sys-header.h %t.dir/Inputs/sys-header.h
|
|
// RUN: sed -e "s|DIR|%/t.dir|g" %S/Inputs/no-werror.json > %t.cdb
|
|
//
|
|
// RUN: clang-scan-deps -compilation-database %t.cdb -j 1 | FileCheck %s
|
|
|
|
#define MACRO 201411L
|
|
|
|
#include "sys-header.h"
|
|
|
|
// CHECK: no-werror_input.cpp
|
|
// CHECK-NEXT: Inputs{{/|\\}}sys-header.h
|
|
|
|
// CHECK: no-werror_input_clangcl.cpp
|
|
// CHECK-NEXT: Inputs{{/|\\}}sys-header.h
|