mirror of
https://gitee.com/js-yhsec/energy_storage.git
synced 2026-05-28 03:09:24 +08:00
13 lines
226 B
Bash
13 lines
226 B
Bash
|
|
#!/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
|