Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ci_setup_clang.sh « scripts - github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 140f9f9d0dc66516e30bc0f41383cfb1725aa6ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -ex

VERSION=$1

apt-get update
apt-get install -y libc++-${VERSION}-dev libc++abi-${VERSION}-dev

if [[ "${VERSION}" -ge 12 ]]; then
    apt-get install -y --no-install-recommends libunwind-${VERSION}-dev
fi