blob: 8bc03ceb8ea2e50f219924af65518a37bb74b051 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
setup_build_variables_metasmt() {
return 0
}
install_build_dependencies_metasmt() {
source "${DIR}/common-functions"
with_sudo apt update -y
dependencies=(
# libgmp, gperf (required by yices2)
gperf
libgmp-dev
libbz2-dev
libboost-dev
build-essential
git
wget
ca-certificates
cmake
zlib1g-dev
bison
flex
unzip
python
autoconf
python3
curl
)
#Install essential dependencies
with_sudo apt -y --no-install-recommends install "${dependencies[@]}"
}
|