16 lines
235 B
Bash
Executable file
16 lines
235 B
Bash
Executable file
#!/bin/bash
|
|
|
|
export DEBIAN_FRONTEND="noninteractive"
|
|
|
|
apt update -y
|
|
apt upgrade -y
|
|
apt install -y \
|
|
automake \
|
|
build-essential \
|
|
clang-14 \
|
|
cmake \
|
|
gdb \
|
|
libc++-14-dev \
|
|
libc++abi-14-dev \
|
|
libeigen3-dev \
|
|
ninja-build
|