This repository has been archived on 2024-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
stagex/binutils/Dockerfile

53 lines
1.6 KiB
Docker
Raw Normal View History

2023-11-17 10:00:25 +00:00
FROM imgrep/musl:latest as musl
FROM imgrep/bootstrap:latest as build
2023-11-13 22:45:56 +00:00
ENV SRC_SITE https://ftp.gnu.org/gnu/binutils
ENV SRC_VERSION 2.41
ENV SRC_HASH ae9a5789e23459e59606e6714723f2d3ffc31c03174191ef0d015bdf06007450
RUN wget ${SRC_SITE}/binutils-${SRC_VERSION}.tar.xz
RUN echo "${SRC_HASH} binutils-${SRC_VERSION}.tar.xz" | sha256sum -c
RUN tar -xf binutils-${SRC_VERSION}.tar.xz
WORKDIR binutils-${SRC_VERSION}
RUN set -ex; \
CFLAGS='-Os -Wformat -Werror=format-security -O2' \
CXXFLAGS='-Os -Wformat -Werror=format-security -O2' \
./configure \
--build=x86_64-linux-musl \
--host=x86_64-linux-musl \
--target=x86_64-linux-musl \
--with-build-sysroot= \
--with-sysroot=/ \
2023-11-21 23:57:26 +00:00
--prefix=/usr \
2023-11-13 22:45:56 +00:00
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--sysconfdir=/etc \
--enable-plugins \
--without-zstd \
--disable-shared \
--disable-jansson \
--disable-gdb \
--disable-gprofng \
--disable-multilib \
--disable-nls \
--disable-werror \
2023-11-21 23:57:26 +00:00
--enable-gold \
2023-11-13 22:45:56 +00:00
--enable-64-bit-bfd \
--enable-default-execstack=no \
--enable-default-hash-style=gnu \
--enable-deterministic-archives \
--enable-ld=default \
--enable-new-dtags \
--enable-relro \
--enable-threads \
--with-mmap \
--with-pic; \
make -j "$(nproc)"; \
2023-11-21 23:57:26 +00:00
make DESTDIR="/home/user/rootfs" install;
2023-11-19 07:38:16 +00:00
COPY --from=musl /usr/lib/libc.so /rootfs/lib/ld-musl-x86_64.so.1
2023-11-13 22:45:56 +00:00
FROM scratch
2023-11-21 23:57:26 +00:00
COPY --from=build /home/user/rootfs /
2023-11-13 22:45:56 +00:00
ENTRYPOINT ["/bin/ld"]
CMD ["--version"]