mirror of
https://github.com/richfelker/musl-cross-make.git
synced 2025-04-16 22:14:59 +02:00
Disable gprofng
This commit is contained in:
parent
85d2acc91f
commit
ea3f6da2ef
@ -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
|
||||
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/sh -x
|
||||
#!/bin/sh
|
||||
#
|
||||
# cowpatch.sh, by Rich Felker
|
||||
#
|
||||
|
@ -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) \
|
||||
|
Loading…
Reference in New Issue
Block a user