Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add rust1.76 and extra fd deps #2

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,18 @@ DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
software-properties-common \
gnupg \
linux-headers-generic \
librocksdb-dev
librocksdb-dev \
autoconf \
gettext \
automake \
autopoint \
flex \
bison \
gcc-multilib \
llvm \
lcov \
protobuf-compiler


cd /usr/bin

Expand All @@ -25,6 +36,7 @@ chmod +x llvm.sh
curl https://sh.rustup.rs -sSf | sh -s -- -y
source "$HOME/.cargo/env"
rustup toolchain install nightly
rustup toolchain add 1.76.0-x86_64-unknown-linux-gnu
rustup default nightly
rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu

Expand Down