disable CONFIG_NATIVE for hmalloc
This commit is contained in:
parent
d79ad113e3
commit
a03f3ab955
1 changed files with 2 additions and 1 deletions
|
@ -25,12 +25,13 @@ ARG ALPINE_VERSION
|
||||||
FROM alpine:${ALPINE_VERSION} as build-malloc
|
FROM alpine:${ALPINE_VERSION} as build-malloc
|
||||||
|
|
||||||
ARG HARDENED_MALLOC_VERSION
|
ARG HARDENED_MALLOC_VERSION
|
||||||
|
ARG CONFIG_NATIVE=false
|
||||||
|
|
||||||
RUN apk --no-cache add build-base git gnupg && cd /tmp \
|
RUN apk --no-cache add build-base git gnupg && cd /tmp \
|
||||||
&& wget -q https://github.com/thestinger.gpg && gpg --import thestinger.gpg \
|
&& wget -q https://github.com/thestinger.gpg && gpg --import thestinger.gpg \
|
||||||
&& git clone --depth 1 --branch ${HARDENED_MALLOC_VERSION} https://github.com/GrapheneOS/hardened_malloc \
|
&& git clone --depth 1 --branch ${HARDENED_MALLOC_VERSION} https://github.com/GrapheneOS/hardened_malloc \
|
||||||
&& cd hardened_malloc && git verify-tag $(git describe --tags) \
|
&& cd hardened_malloc && git verify-tag $(git describe --tags) \
|
||||||
&& make
|
&& make CONFIG_NATIVE=${CONFIG_NATIVE}
|
||||||
|
|
||||||
|
|
||||||
### Build GNU Libiconv (needed for nokogiri)
|
### Build GNU Libiconv (needed for nokogiri)
|
||||||
|
|
Loading…
Reference in a new issue