We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e871b69 commit 8605109Copy full SHA for 8605109
1 file changed
Dockerfile
@@ -80,6 +80,10 @@ RUN apt-get update -y -q && apt-get upgrade -y -q && apt-get upgrade -y -q && \
80
## and bootstrap everything.
81
ENV PATH="/opt/compiler-explorer/gcc-14.2.0/bin:${PATH}"
82
ENV LD_LIBRARY_PATH="/opt/compiler-explorer/gcc-14.2.0/lib64:${PATH}"
83
+# This is needed because cross-tools needs to look within this location for a libatomic from
84
+# the host toolchain. But cross-tools overrides the sysroot, and so problems occur during
85
+# building because GCC now links -latomic by default.
86
+ENV LDFLAGS="-L/opt/compiler-explorer/gcc-14.2.0/lib64"
87
88
WORKDIR /opt
89
0 commit comments