We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7beecf commit 112999bCopy full SHA for 112999b
src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile
@@ -33,12 +33,15 @@ RUN yum upgrade -y && \
33
xz \
34
zlib-devel.i686 \
35
zlib-devel.x86_64 \
36
+ jemalloc-devel
37
&& yum clean all
38
39
RUN mkdir -p /rustroot/bin
40
41
ENV PATH=/rustroot/bin:$PATH
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
ENV PKG_CONFIG_PATH=/rustroot/lib/pkgconfig
46
WORKDIR /tmp
47
RUN mkdir /home/user
0 commit comments