Browse Source

Add LLVM 15 (#57)

master
TGP17 2 years ago
committed by GitHub
parent
commit
ec0efa8b1c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      linux-appimage/Dockerfile
  2. 3
      linux-fresh/Dockerfile

7
linux-appimage/Dockerfile

@ -53,6 +53,13 @@ RUN apt-get install -y \
glslang-dev \ glslang-dev \
glslang-tools \ glslang-tools \
file file
# Install LLVM 15
RUN wget https://apt.llvm.org/llvm.sh
RUN chmod +x llvm.sh
RUN ./llvm.sh 15 all
RUN update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-15 150
RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-15 150
# Download tools for building AppImages # Download tools for building AppImages
RUN wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage RUN wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage

3
linux-fresh/Dockerfile

@ -10,10 +10,13 @@ RUN apt-get install -y \
# Tools # Tools
build-essential \ build-essential \
ccache \ ccache \
clang \
clang-format-15 \ clang-format-15 \
cmake \ cmake \
curl \ curl \
git \ git \
lld \
llvm \
ninja-build \ ninja-build \
p7zip-full \ p7zip-full \
python3-pip \ python3-pip \

Loading…
Cancel
Save