This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
nettrans/3rd/spdlog-1.13.0/scripts/ci_setup_clang.sh

13 lines
226 B
Bash
Raw Permalink Normal View History

2024-04-16 21:34:06 +08:00
#!/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