File tree 1 file changed +1
-3
lines changed
src/ci/docker/host-x86_64/dist-x86_64-linux
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,6 @@ RUN mkdir -p /rustroot/bin
40
40
41
41
ENV PATH=/rustroot/bin:$PATH
42
42
ENV LD_LIBRARY_PATH=/rustroot/lib64:/rustroot/lib32:/rustroot/lib
43
- # This is a RUN command because we need to do some command interpolation
44
- RUN export LD_PRELOAD=`jemalloc-config --libdir`/libjemalloc.so.`jemalloc-config --revision`
45
43
ENV PKG_CONFIG_PATH=/rustroot/lib/pkgconfig
46
44
WORKDIR /tmp
47
45
RUN mkdir /home/user
@@ -58,7 +56,7 @@ RUN ./cmake.sh
58
56
# Now build LLVM+Clang, afterwards configuring further compilations to use the
59
57
# clang/clang++ compilers.
60
58
COPY host-x86_64/dist-x86_64-linux/build-clang.sh /tmp/
61
- RUN ./build-clang.sh
59
+ RUN LD_PRELOAD=`jemalloc-config --libdir`/libjemalloc.so.`jemalloc-config --revision` ./build-clang.sh
62
60
ENV CC=clang CXX=clang++
63
61
64
62
# rustc-perf version from 2023-10-22
You can’t perform that action at this time.
0 commit comments