Skip to content

Commit

Permalink
scripts(setup-ubuntu): bump to LLVM 18
Browse files Browse the repository at this point in the history
  • Loading branch information
truboxl committed Nov 29, 2024
1 parent 5852433 commit d43ffcb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/setup-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ PACKAGES+=" composer"

# Needed by package rust.
PACKAGES+=" libssl-dev" # Needed to build Rust
PACKAGES+=" llvm-17-dev"
PACKAGES+=" llvm-17-tools"
PACKAGES+=" clang-17"
PACKAGES+=" llvm-18-dev"
PACKAGES+=" llvm-18-tools"
PACKAGES+=" clang-18"

# Needed by librusty-v8
PACKAGES+=" libclang-rt-17-dev"
Expand Down Expand Up @@ -325,7 +325,7 @@ $SUDO dpkg --add-architecture i386
$SUDO cp $(dirname "$(realpath "$0")")/llvm-snapshot.gpg.key /etc/apt/trusted.gpg.d/apt.llvm.org.asc
$SUDO chmod a+r /etc/apt/trusted.gpg.d/apt.llvm.org.asc
{
echo "deb [arch=amd64] http://apt.llvm.org/noble/ llvm-toolchain-noble-17 main"
echo "deb [arch=amd64] http://apt.llvm.org/noble/ llvm-toolchain-noble-18 main"
} | $SUDO tee /etc/apt/sources.list.d/apt-llvm-org.list > /dev/null

$SUDO apt-get -yq update
Expand Down

0 comments on commit d43ffcb

Please sign in to comment.