Disable gprofng

This commit is contained in:
Adam Baxter 2024-01-13 18:51:12 +11:00
parent 85d2acc91f
commit ea3f6da2ef
3 changed files with 8 additions and 5 deletions

View File

@ -1,8 +1,11 @@
FROM alpine
RUN apk add alpine-sdk make curl xz bison
FROM alpine as build
RUN apk add alpine-sdk make curl xz bison linux-headers
WORKDIR /src
COPY . /src
RUN make sources/gcc-13.2.0.tar.xz
RUN make sources/binutils-2.41.tar.xz
RUN make TARGET=aarch64-linux-musl
RUN make -j$(nproc) TARGET=aarch64-linux-musl
RUN make install TARGET=aarch64-linux-musl

View File

@ -1,4 +1,4 @@
#!/bin/sh -x
#!/bin/sh
#
# cowpatch.sh, by Rich Felker
#

View File

@ -63,7 +63,7 @@ FULL_BINUTILS_CONFIG = \
--target=$(TARGET) --prefix= \
--libdir=/lib --disable-multilib \
--with-sysroot=$(SYSROOT) \
--enable-deterministic-archives
--enable-deterministic-archives --disable-gprofng
FULL_GCC_CONFIG = --enable-languages=c,c++ \
$(GCC_CONFIG_FOR_TARGET) \