Unverified Commit 757725c9 authored by Alyssa Ross's avatar Alyssa Ross Committed by GitHub
Browse files

clang-tools: handle -cxx-isystem in wrapper (#475078)

parents 26a97d27 91bc3381
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ buildcpath() {
  local path after
  while (( $# )); do
    case $1 in
        -isystem)
        -isystem|-cxx-isystem)
            shift
            path=$path${path:+':'}$1
            ;;