File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 68
68
# Cache ID is a value inserted into cache keys. Whenever changing the build
69
69
# in a way that needs to use entirely new fresh builds, increment the number
70
70
# by one so that all the keys become new.
71
- CACHE_ID : 4
71
+ CACHE_ID : 5
72
72
ARTIFACT_RETENTION_DAYS_FOR_IMAGE : 7
73
73
ARTIFACT_RETENTION_DAYS_FOR_LOGS : 60
74
74
Original file line number Diff line number Diff line change @@ -20,10 +20,12 @@ RUN git submodule foreach --recursive git clean -dXf
20
20
21
21
ARG CC=clang-12
22
22
ARG CXX=clang++-12
23
- ARG CFLAGS='-O3 -g1'
24
- ARG CXXFLAGS='-O3 -g1'
23
+ ARG CFLAGS='-O3 -g1 -fno-omit-frame-pointer '
24
+ ARG CXXFLAGS='-O3 -g1 -fno-omit-frame-pointer -stdlib=libc++ '
25
25
ARG CONFIGURE_FLAGS=''
26
26
27
+ RUN sysctl vm.mmap_rnd_bits=28
28
+
27
29
RUN ./autogen.sh
28
30
RUN ./install-rust.sh
29
31
ENV PATH "/root/.cargo/bin:$PATH"
You can’t perform that action at this time.
0 commit comments