CCF/scripts/scan-build.sh

13 строки
379 B
Bash
Executable File

#!/bin/bash
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the Apache 2.0 License.
CLANG_VERSION=11
export CCC_CC="clang-$CLANG_VERSION"
export CCC_CXX="clang++-$CLANG_VERSION"
SCAN="scan-build-$CLANG_VERSION --exclude 3rdparty --exclude test"
# Fails on the current build of clang, because of false positives in doctest, WIP
$SCAN ninja || true