mirror of
https://github.com/richfelker/musl-cross-make.git
synced 2025-04-19 23:44:58 +02:00
Disable gprofng
This commit is contained in:
parent
85d2acc91f
commit
ea3f6da2ef
@ -1,8 +1,11 @@
|
|||||||
FROM alpine
|
FROM alpine as build
|
||||||
RUN apk add alpine-sdk make curl xz bison
|
RUN apk add alpine-sdk make curl xz bison linux-headers
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY . /src
|
COPY . /src
|
||||||
|
|
||||||
RUN make sources/gcc-13.2.0.tar.xz
|
RUN make sources/gcc-13.2.0.tar.xz
|
||||||
RUN make sources/binutils-2.41.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
|
# cowpatch.sh, by Rich Felker
|
||||||
#
|
#
|
||||||
|
@ -63,7 +63,7 @@ FULL_BINUTILS_CONFIG = \
|
|||||||
--target=$(TARGET) --prefix= \
|
--target=$(TARGET) --prefix= \
|
||||||
--libdir=/lib --disable-multilib \
|
--libdir=/lib --disable-multilib \
|
||||||
--with-sysroot=$(SYSROOT) \
|
--with-sysroot=$(SYSROOT) \
|
||||||
--enable-deterministic-archives
|
--enable-deterministic-archives --disable-gprofng
|
||||||
|
|
||||||
FULL_GCC_CONFIG = --enable-languages=c,c++ \
|
FULL_GCC_CONFIG = --enable-languages=c,c++ \
|
||||||
$(GCC_CONFIG_FOR_TARGET) \
|
$(GCC_CONFIG_FOR_TARGET) \
|
||||||
|
Loading…
Reference in New Issue
Block a user