-
Currently studying computer science at ELTE, Budapest 🇭🇺
- Joined on
2024-03-23
Block a user
icantseesharp/crosscompiler (a29de09f9363b4bd84235c0db2ecf3e6242d33c0)
Published 2026-07-22 00:29:18 +02:00 by laci0503
Installation
docker pull gitea.laci0503.duckdns.org/laci0503/icantseesharp/crosscompiler:a29de09f9363b4bd84235c0db2ecf3e6242d33c0sha256:1dfef09fe754defeeaac666334014050e010d7ca8060c7edcd24ccd2200b4cf0
Images
| Digest | OS / Arch | Size |
|---|---|---|
| 8a41c634ac | linux/amd64 | 2.5 GiB |
Image Layers ( linux/amd64)
| umoci raw add-layer --image /home/buildd/rockcraft-ubuntu-9cbff345d050d8210022046bb567023a/images/ubuntu:rockcraft-base /home/buildd/rockcraft-ubuntu-9cbff345d050d8210022046bb567023a/images/.temp_layer.8989.tar --tag 26.04 |
| umoci config --image /home/buildd/rockcraft-ubuntu-9cbff345d050d8210022046bb567023a/images/ubuntu:26.04 --clear=config.entrypoint --clear=config.cmd |
| umoci config --image /home/buildd/rockcraft-ubuntu-9cbff345d050d8210022046bb567023a/images/ubuntu:26.04 --clear=config.cmd --config.cmd /bin/bash |
| umoci config --image /home/buildd/rockcraft-ubuntu-9cbff345d050d8210022046bb567023a/images/ubuntu:26.04 --config.env PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| umoci config --image /home/buildd/rockcraft-ubuntu-9cbff345d050d8210022046bb567023a/images/ubuntu:26.04 --clear=config.labels --config.label org.opencontainers.image.version=26.04 --config.label org.opencontainers.image.title=ubuntu --config.label org.opencontainers.image.created=2026-07-13T16:06:30.499069+00:00 --config.label org.opencontainers.image.description=The Ubuntu container image maintained by Canonical Ubuntu is a Debian-based Linux operating system that runs from the desktop to the cloud, to all your internet connected things. It is the world's most popular operating system across public clouds and OpenStack clouds. It is the number one platform for containers; from Docker to Kubernetes to LXD, Ubuntu can run your containers at scale. Fast, secure and simple, Ubuntu powers millions of PCs worldwide. |
| umoci config --image /home/buildd/rockcraft-ubuntu-9cbff345d050d8210022046bb567023a/images/ubuntu:26.04 --clear=manifest.annotations --manifest.annotation org.opencontainers.image.version=26.04 --manifest.annotation org.opencontainers.image.title=ubuntu --manifest.annotation org.opencontainers.image.created=2026-07-13T16:06:30.499069+00:00 --manifest.annotation org.opencontainers.image.description=The Ubuntu container image maintained by Canonical Ubuntu is a Debian-based Linux operating system that runs from the desktop to the cloud, to all your internet connected things. It is the world's most popular operating system across public clouds and OpenStack clouds. It is the number one platform for containers; from Docker to Kubernetes to LXD, Ubuntu can run your containers at scale. Fast, secure and simple, Ubuntu powers millions of PCs worldwide. |
| umoci raw add-layer --image /home/buildd/rockcraft-ubuntu-9cbff345d050d8210022046bb567023a/images/ubuntu:26.04 /home/buildd/rockcraft-ubuntu-9cbff345d050d8210022046bb567023a/images/.temp_layer.control_data.8989.tar |
| ARG BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz |
| ARG GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz |
| ARG BINUTILS_DIR=binutils-2.46.0 |
| ARG GCC_DIR=gcc-16.1.0 |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c apt update -y && apt upgrade -y # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c apt install -y gcc libc++-dev zip unzip build-essential bison flex libgmp3-dev libmpc-dev libmpfr-dev texinfo wget libisl-dev # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c mkdir /crosscompiler # buildkit |
| WORKDIR /crosscompiler |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c wget -O binutils.tar.gz "$BINUTILS_URL" # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c wget -O gcc.tar.gz "$GCC_URL" # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c tar -xvzf binutils.tar.gz -C . # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c tar -xvzf gcc.tar.gz -C . # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c mkdir /crosscompiler/output # buildkit |
| ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/crosscompiler/output |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c mkdir binutils_build # buildkit |
| WORKDIR /crosscompiler/binutils_build |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c ../$BINUTILS_DIR/configure --target=x86_64-elf --prefix="/crosscompiler/output" --with-sysroot --disable-nls --disable-werror # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c make # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c make install # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c rm -rf /crosscompiler/binutils_build # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c rm -rf /crosscompiler/$BINUTILS_DIR # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c mkdir /crosscompiler/gcc_build # buildkit |
| WORKDIR /crosscompiler/gcc_build |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c ../$GCC_DIR/configure --target=x86_64-elf --prefix="/crosscompiler/output" --disable-nls --enable-languages=c,c++ --without-headers --disable-hosted-libstdcxx # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c make all-gcc # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c make all-target-libgcc # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c make all-target-libstdc++-v3 # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c make install-gcc # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c make install-target-libgcc # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c make install-target-libstdc++-v3 # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c rm -rf /crosscompiler/gcc # buildkit |
| RUN |4 BINUTILS_URL=https://ftp.gnu.org/gnu/binutils/binutils-2.46.0.tar.gz GCC_URL=https://ftp.gnu.org/gnu/gcc/gcc-16.1.0/gcc-16.1.0.tar.gz BINUTILS_DIR=binutils-2.46.0 GCC_DIR=gcc-16.1.0 /bin/sh -c rm -rf /crosscompiler/$GCC_DIR # buildkit |
Labels
| Key | Value |
|---|---|
| org.opencontainers.image.created | 2026-07-13T16:06:30.499069+00:00 |
| org.opencontainers.image.description | The Ubuntu container image maintained by Canonical Ubuntu is a Debian-based Linux operating system that runs from the desktop to the cloud, to all your internet connected things. It is the world's most popular operating system across public clouds and OpenStack clouds. It is the number one platform for containers; from Docker to Kubernetes to LXD, Ubuntu can run your containers at scale. Fast, secure and simple, Ubuntu powers millions of PCs worldwide. |
| org.opencontainers.image.title | ubuntu |
| org.opencontainers.image.version | 26.04 |
Details
2026-07-22 00:29:18 +02:00
Versions (2)
View all
Container
0
OCI / Docker
latest
2026-07-22
a29de09f9363b4bd84235c0db2ecf3e6242d33c0
2026-07-22