File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,6 @@ FROM runtime as build
26
26
27
27
RUN \
28
28
apk add --update --no-cache --force-overwrite \
29
- llvm15 -dev llvm15 -static g++ libffi-dev
29
+ llvm18 -dev llvm18 -static g++ libffi-dev
30
30
31
31
CMD ["/bin/sh" ]
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ FROM runtime as build
23
23
24
24
RUN \
25
25
apt-get update && \
26
- apt-get install -y build-essential llvm-15 lld-15 libedit-dev gdb libffi-dev && \
26
+ apt-get install -y build-essential llvm-18 lld-18 libedit-dev gdb libffi-dev && \
27
27
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
28
28
29
29
RUN ln -sf /usr/bin/ld.lld-15 /usr/bin/ld.lld
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ FROM alpine:3.20
23
23
# Install dependencies
24
24
RUN apk add --no-cache \
25
25
# Statically-compiled llvm
26
- llvm15 -dev llvm15 -static \
26
+ llvm18 -dev llvm18 -static \
27
27
# Static stdlib dependencies
28
28
gc-dev zlib-static yaml-static libxml2-static pcre2-dev libevent-static zstd-static \
29
29
# Static compiler dependencies
@@ -40,7 +40,7 @@ ENV CFLAGS="-fPIC -pipe ${release:+-O2}"
40
40
# This particularly affects libgc which was bundled upto Crystal 1.12
41
41
ENV CRYSTAL_LIBRARY_PATH=""
42
42
43
- RUN llvm15 -config --version
43
+ RUN llvm18 -config --version
44
44
45
45
ARG previous_crystal_release
46
46
ADD ${previous_crystal_release} /tmp/crystal.tar.gz
You can’t perform that action at this time.
0 commit comments