зеркало из https://github.com/microsoft/CCF.git
13 строки
337 B
Bash
Executable File
13 строки
337 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the Apache 2.0 License.
|
|
|
|
CLANG_VERSION=10
|
|
|
|
export CCC_CC="clang-$CLANG_VERSION"
|
|
export CCC_CXX="clang++-$CLANG_VERSION"
|
|
|
|
SCAN="scan-build-$CLANG_VERSION --exclude 3rdparty --exclude test"
|
|
|
|
$SCAN cmake -GNinja -DCMAKE_BUILD_TYPE=Debug ..
|
|
$SCAN ninja |