├── LICENSE ├── LICENSE.patches ├── README.md ├── doc ├── BOOTSTRAP.md ├── COMPILERS.md ├── TOOLS.md └── host-config.nix ├── etc ├── defaults │ ├── CC │ │ ├── clang.TARGETS │ │ ├── foreign │ │ │ ├── clang.TARGETS │ │ │ ├── gcc.TARGETS │ │ │ ├── stage-0.TARGETS │ │ │ ├── stage-1.TARGETS │ │ │ ├── test.TARGETS │ │ │ └── tools.TARGETS │ │ ├── gcc.TARGETS │ │ ├── stage-0.TARGETS │ │ ├── stage-1.TARGETS │ │ ├── test.TARGETS │ │ └── tools.TARGETS │ └── shell │ │ ├── clang.TARGETS │ │ ├── gcc.TARGETS │ │ ├── stage-0.TARGETS │ │ ├── stage-1.TARGETS │ │ ├── test.TARGETS │ │ ├── test │ │ └── test.TARGETS │ │ └── tools.TARGETS ├── imports │ ├── binutils.TARGETS │ ├── boringssl.TARGETS │ ├── empty.TARGETS │ ├── files.TARGETS │ ├── iwyu.TARGETS │ ├── musl-cross-make-fe915821.TARGETS │ ├── src │ │ └── include │ │ │ └── openssl │ │ │ └── boringssl.TARGETS │ └── zlib.TARGETS ├── patches │ ├── TARGETS │ ├── clang-16 │ │ └── libcxx-musl-support.patch │ ├── clang-17 │ │ └── libcxx-musl-support.patch │ ├── clang-18 │ │ └── libcxx-musl-support.patch │ ├── clang-19 │ │ └── libcxx-musl-support.patch │ ├── clang-20 │ │ └── libcxx-musl-support.patch │ ├── gcc-10 │ │ ├── detect-glibc-via-__GLIBC__.patch │ │ └── reproducibility │ │ │ ├── 0001-strip-build-directory-from-fixincludes.patch │ │ │ ├── 0002-compute-reproducible-checksums.patch │ │ │ └── series │ ├── gcc-13 │ │ └── reproducibility │ │ │ ├── 0001-strip-build-directory-from-config-arguments.patch │ │ │ ├── 0002-strip-build-directory-from-fixincludes.patch │ │ │ ├── 0003-strip-build-directory-from-mkheaders.conf.patch │ │ │ ├── 0004-compute-reproducible-checksums.patch │ │ │ ├── 0005-do-not-hardcode-rpath-into-cc1-libs.patch │ │ │ └── series │ ├── gcc-14 │ │ └── reproducibility │ │ │ ├── 0001-strip-build-directory-from-config-arguments.patch │ │ │ ├── 0002-strip-build-directory-from-fixincludes.patch │ │ │ ├── 0003-strip-build-directory-from-mkheaders.conf.patch │ │ │ ├── 0004-compute-reproducible-checksums.patch │ │ │ ├── 0005-do-not-hardcode-rpath-into-cc1-libs.patch │ │ │ └── series │ ├── gcc-4.7.4 │ │ ├── musl-support │ │ │ ├── 0001-config.sub-add-musl-support-for-gmp-mpc-mpfr.patch │ │ │ ├── 0002-config.sub-add-musl-support-for-gcc.patch │ │ │ ├── 0003-musl-libc-config.patch │ │ │ ├── 0004-x86-musl-support.patch │ │ │ ├── 0005-libstdc-workaround-for-musl.patch │ │ │ ├── 0006-config.guess-add-musl-support.patch │ │ │ ├── 0007-config.guess-detect-glibc-via-__GLIBC__.patch │ │ │ └── series │ │ ├── reproducibility │ │ │ ├── 0001-strip-build-directory-from-fixincludes.patch │ │ │ ├── 0002-compute-reproducible-checksums.patch │ │ │ └── series │ │ ├── use-ucontext_t.patch │ │ └── various-fixes │ │ │ ├── 0001-non-behavioral-changing-fix-in-gcc-cp-rtti.c.patch │ │ │ ├── 0002-comment-out-M4-m4-not-needed-in-gmp-configure.patch │ │ │ ├── 0003-cfns-fix-mismatch-in-gnu_inline-attributes.patch │ │ │ ├── 0004-fix-gmp-configure-to-comply-with-newer-c-standards.patch │ │ │ └── series │ ├── musl-cross-make-fe915821 │ │ ├── fix-asound-patch.patch │ │ └── patches │ │ │ ├── binutils-latest │ │ │ └── 0001-j2.diff │ │ │ ├── gcc-13 │ │ │ ├── 0001-ssp_nonshared.diff │ │ │ ├── 0002-posix_memalign.diff │ │ │ ├── 0003-j2.diff │ │ │ ├── 0004-static-pie.diff │ │ │ └── 0005-m68k-sqrt.diff │ │ │ └── gcc-14 │ │ │ ├── 0001-ssp_nonshared.diff │ │ │ ├── 0002-posix_memalign.diff │ │ │ ├── 0003-j2.diff │ │ │ ├── 0004-static-pie.diff │ │ │ └── 0005-m68k-sqrt.diff │ └── wrapper.c └── repos.json ├── src ├── bootstrap │ ├── include │ │ └── stage-0-busybox.TARGETS │ ├── stage-0-binutils.TARGETS │ ├── stage-0-busybox.TARGETS │ ├── stage-0-gcc.TARGETS │ ├── stage-0-make.TARGETS │ └── stage-1-gcc.TARGETS ├── compilers │ ├── clang-16-native.TARGETS │ ├── clang-17-native.TARGETS │ ├── clang-18-native.TARGETS │ ├── clang-19-native.TARGETS │ ├── clang-20-native.TARGETS │ ├── gcc-13-musl-static.TARGETS │ ├── gcc-13-musl.TARGETS │ ├── gcc-13-native.TARGETS │ ├── gcc-14-musl-static.TARGETS │ ├── gcc-14-musl.TARGETS │ └── gcc-14-native.TARGETS └── tools │ ├── busybox-1.36.TARGETS │ ├── cmake-3.27.TARGETS │ ├── make-4.4.TARGETS │ └── python-3.12.TARGETS ├── test ├── TARGETS ├── main.c ├── main.cpp └── test.sh └── toolchains ├── CC ├── clang.TARGETS ├── compiler+tools.TARGETS ├── foreign │ ├── busybox.TARGETS │ ├── cmake.TARGETS │ ├── compiler+tools.TARGETS │ ├── make.TARGETS │ ├── python.TARGETS │ └── tools-all.TARGETS └── gcc.TARGETS ├── busybox.TARGETS ├── clang.TARGETS ├── cmake.TARGETS ├── compiler+tools.TARGETS ├── gcc.TARGETS ├── make.TARGETS ├── patch ├── busybox.TARGETS ├── compiler+tools.TARGETS └── tools-all.TARGETS ├── python.TARGETS ├── shell ├── busybox.TARGETS ├── cmake.TARGETS ├── compiler+tools.TARGETS ├── make.TARGETS ├── python.TARGETS └── tools-all.TARGETS └── tools-all.TARGETS /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/LICENSE.patches -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/README.md -------------------------------------------------------------------------------- /doc/BOOTSTRAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/doc/BOOTSTRAP.md -------------------------------------------------------------------------------- /doc/COMPILERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/doc/COMPILERS.md -------------------------------------------------------------------------------- /doc/TOOLS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/doc/TOOLS.md -------------------------------------------------------------------------------- /doc/host-config.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/doc/host-config.nix -------------------------------------------------------------------------------- /etc/defaults/CC/clang.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/CC/clang.TARGETS -------------------------------------------------------------------------------- /etc/defaults/CC/foreign/clang.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/CC/foreign/clang.TARGETS -------------------------------------------------------------------------------- /etc/defaults/CC/foreign/gcc.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/CC/foreign/gcc.TARGETS -------------------------------------------------------------------------------- /etc/defaults/CC/foreign/stage-0.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/CC/foreign/stage-0.TARGETS -------------------------------------------------------------------------------- /etc/defaults/CC/foreign/stage-1.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/CC/foreign/stage-1.TARGETS -------------------------------------------------------------------------------- /etc/defaults/CC/foreign/test.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/CC/foreign/test.TARGETS -------------------------------------------------------------------------------- /etc/defaults/CC/foreign/tools.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/CC/foreign/tools.TARGETS -------------------------------------------------------------------------------- /etc/defaults/CC/gcc.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/CC/gcc.TARGETS -------------------------------------------------------------------------------- /etc/defaults/CC/stage-0.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/CC/stage-0.TARGETS -------------------------------------------------------------------------------- /etc/defaults/CC/stage-1.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/CC/stage-1.TARGETS -------------------------------------------------------------------------------- /etc/defaults/CC/test.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/CC/test.TARGETS -------------------------------------------------------------------------------- /etc/defaults/CC/tools.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/CC/tools.TARGETS -------------------------------------------------------------------------------- /etc/defaults/shell/clang.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/shell/clang.TARGETS -------------------------------------------------------------------------------- /etc/defaults/shell/gcc.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/shell/gcc.TARGETS -------------------------------------------------------------------------------- /etc/defaults/shell/stage-0.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/shell/stage-0.TARGETS -------------------------------------------------------------------------------- /etc/defaults/shell/stage-1.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/shell/stage-1.TARGETS -------------------------------------------------------------------------------- /etc/defaults/shell/test.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/shell/test.TARGETS -------------------------------------------------------------------------------- /etc/defaults/shell/test/test.TARGETS: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /etc/defaults/shell/tools.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/defaults/shell/tools.TARGETS -------------------------------------------------------------------------------- /etc/imports/binutils.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/imports/binutils.TARGETS -------------------------------------------------------------------------------- /etc/imports/boringssl.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/imports/boringssl.TARGETS -------------------------------------------------------------------------------- /etc/imports/empty.TARGETS: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /etc/imports/files.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/imports/files.TARGETS -------------------------------------------------------------------------------- /etc/imports/iwyu.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/imports/iwyu.TARGETS -------------------------------------------------------------------------------- /etc/imports/musl-cross-make-fe915821.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/imports/musl-cross-make-fe915821.TARGETS -------------------------------------------------------------------------------- /etc/imports/src/include/openssl/boringssl.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/imports/src/include/openssl/boringssl.TARGETS -------------------------------------------------------------------------------- /etc/imports/zlib.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/imports/zlib.TARGETS -------------------------------------------------------------------------------- /etc/patches/TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/TARGETS -------------------------------------------------------------------------------- /etc/patches/clang-16/libcxx-musl-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/clang-16/libcxx-musl-support.patch -------------------------------------------------------------------------------- /etc/patches/clang-17/libcxx-musl-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/clang-17/libcxx-musl-support.patch -------------------------------------------------------------------------------- /etc/patches/clang-18/libcxx-musl-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/clang-18/libcxx-musl-support.patch -------------------------------------------------------------------------------- /etc/patches/clang-19/libcxx-musl-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/clang-19/libcxx-musl-support.patch -------------------------------------------------------------------------------- /etc/patches/clang-20/libcxx-musl-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/clang-20/libcxx-musl-support.patch -------------------------------------------------------------------------------- /etc/patches/gcc-10/detect-glibc-via-__GLIBC__.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-10/detect-glibc-via-__GLIBC__.patch -------------------------------------------------------------------------------- /etc/patches/gcc-10/reproducibility/0001-strip-build-directory-from-fixincludes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-10/reproducibility/0001-strip-build-directory-from-fixincludes.patch -------------------------------------------------------------------------------- /etc/patches/gcc-10/reproducibility/0002-compute-reproducible-checksums.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-10/reproducibility/0002-compute-reproducible-checksums.patch -------------------------------------------------------------------------------- /etc/patches/gcc-10/reproducibility/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-10/reproducibility/series -------------------------------------------------------------------------------- /etc/patches/gcc-13/reproducibility/0001-strip-build-directory-from-config-arguments.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-13/reproducibility/0001-strip-build-directory-from-config-arguments.patch -------------------------------------------------------------------------------- /etc/patches/gcc-13/reproducibility/0002-strip-build-directory-from-fixincludes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-13/reproducibility/0002-strip-build-directory-from-fixincludes.patch -------------------------------------------------------------------------------- /etc/patches/gcc-13/reproducibility/0003-strip-build-directory-from-mkheaders.conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-13/reproducibility/0003-strip-build-directory-from-mkheaders.conf.patch -------------------------------------------------------------------------------- /etc/patches/gcc-13/reproducibility/0004-compute-reproducible-checksums.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-13/reproducibility/0004-compute-reproducible-checksums.patch -------------------------------------------------------------------------------- /etc/patches/gcc-13/reproducibility/0005-do-not-hardcode-rpath-into-cc1-libs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-13/reproducibility/0005-do-not-hardcode-rpath-into-cc1-libs.patch -------------------------------------------------------------------------------- /etc/patches/gcc-13/reproducibility/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-13/reproducibility/series -------------------------------------------------------------------------------- /etc/patches/gcc-14/reproducibility/0001-strip-build-directory-from-config-arguments.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-14/reproducibility/0001-strip-build-directory-from-config-arguments.patch -------------------------------------------------------------------------------- /etc/patches/gcc-14/reproducibility/0002-strip-build-directory-from-fixincludes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-14/reproducibility/0002-strip-build-directory-from-fixincludes.patch -------------------------------------------------------------------------------- /etc/patches/gcc-14/reproducibility/0003-strip-build-directory-from-mkheaders.conf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-14/reproducibility/0003-strip-build-directory-from-mkheaders.conf.patch -------------------------------------------------------------------------------- /etc/patches/gcc-14/reproducibility/0004-compute-reproducible-checksums.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-14/reproducibility/0004-compute-reproducible-checksums.patch -------------------------------------------------------------------------------- /etc/patches/gcc-14/reproducibility/0005-do-not-hardcode-rpath-into-cc1-libs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-14/reproducibility/0005-do-not-hardcode-rpath-into-cc1-libs.patch -------------------------------------------------------------------------------- /etc/patches/gcc-14/reproducibility/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-14/reproducibility/series -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/musl-support/0001-config.sub-add-musl-support-for-gmp-mpc-mpfr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/musl-support/0001-config.sub-add-musl-support-for-gmp-mpc-mpfr.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/musl-support/0002-config.sub-add-musl-support-for-gcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/musl-support/0002-config.sub-add-musl-support-for-gcc.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/musl-support/0003-musl-libc-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/musl-support/0003-musl-libc-config.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/musl-support/0004-x86-musl-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/musl-support/0004-x86-musl-support.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/musl-support/0005-libstdc-workaround-for-musl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/musl-support/0005-libstdc-workaround-for-musl.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/musl-support/0006-config.guess-add-musl-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/musl-support/0006-config.guess-add-musl-support.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/musl-support/0007-config.guess-detect-glibc-via-__GLIBC__.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/musl-support/0007-config.guess-detect-glibc-via-__GLIBC__.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/musl-support/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/musl-support/series -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/reproducibility/0001-strip-build-directory-from-fixincludes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/reproducibility/0001-strip-build-directory-from-fixincludes.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/reproducibility/0002-compute-reproducible-checksums.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/reproducibility/0002-compute-reproducible-checksums.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/reproducibility/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/reproducibility/series -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/use-ucontext_t.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/use-ucontext_t.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/various-fixes/0001-non-behavioral-changing-fix-in-gcc-cp-rtti.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/various-fixes/0001-non-behavioral-changing-fix-in-gcc-cp-rtti.c.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/various-fixes/0002-comment-out-M4-m4-not-needed-in-gmp-configure.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/various-fixes/0002-comment-out-M4-m4-not-needed-in-gmp-configure.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/various-fixes/0003-cfns-fix-mismatch-in-gnu_inline-attributes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/various-fixes/0003-cfns-fix-mismatch-in-gnu_inline-attributes.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/various-fixes/0004-fix-gmp-configure-to-comply-with-newer-c-standards.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/various-fixes/0004-fix-gmp-configure-to-comply-with-newer-c-standards.patch -------------------------------------------------------------------------------- /etc/patches/gcc-4.7.4/various-fixes/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/gcc-4.7.4/various-fixes/series -------------------------------------------------------------------------------- /etc/patches/musl-cross-make-fe915821/fix-asound-patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/musl-cross-make-fe915821/fix-asound-patch.patch -------------------------------------------------------------------------------- /etc/patches/musl-cross-make-fe915821/patches/binutils-latest/0001-j2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/musl-cross-make-fe915821/patches/binutils-latest/0001-j2.diff -------------------------------------------------------------------------------- /etc/patches/musl-cross-make-fe915821/patches/gcc-13/0001-ssp_nonshared.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/musl-cross-make-fe915821/patches/gcc-13/0001-ssp_nonshared.diff -------------------------------------------------------------------------------- /etc/patches/musl-cross-make-fe915821/patches/gcc-13/0002-posix_memalign.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/musl-cross-make-fe915821/patches/gcc-13/0002-posix_memalign.diff -------------------------------------------------------------------------------- /etc/patches/musl-cross-make-fe915821/patches/gcc-13/0003-j2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/musl-cross-make-fe915821/patches/gcc-13/0003-j2.diff -------------------------------------------------------------------------------- /etc/patches/musl-cross-make-fe915821/patches/gcc-13/0004-static-pie.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/musl-cross-make-fe915821/patches/gcc-13/0004-static-pie.diff -------------------------------------------------------------------------------- /etc/patches/musl-cross-make-fe915821/patches/gcc-13/0005-m68k-sqrt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/musl-cross-make-fe915821/patches/gcc-13/0005-m68k-sqrt.diff -------------------------------------------------------------------------------- /etc/patches/musl-cross-make-fe915821/patches/gcc-14/0001-ssp_nonshared.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/musl-cross-make-fe915821/patches/gcc-14/0001-ssp_nonshared.diff -------------------------------------------------------------------------------- /etc/patches/musl-cross-make-fe915821/patches/gcc-14/0002-posix_memalign.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/musl-cross-make-fe915821/patches/gcc-14/0002-posix_memalign.diff -------------------------------------------------------------------------------- /etc/patches/musl-cross-make-fe915821/patches/gcc-14/0003-j2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/musl-cross-make-fe915821/patches/gcc-14/0003-j2.diff -------------------------------------------------------------------------------- /etc/patches/musl-cross-make-fe915821/patches/gcc-14/0004-static-pie.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/musl-cross-make-fe915821/patches/gcc-14/0004-static-pie.diff -------------------------------------------------------------------------------- /etc/patches/musl-cross-make-fe915821/patches/gcc-14/0005-m68k-sqrt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/musl-cross-make-fe915821/patches/gcc-14/0005-m68k-sqrt.diff -------------------------------------------------------------------------------- /etc/patches/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/patches/wrapper.c -------------------------------------------------------------------------------- /etc/repos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/etc/repos.json -------------------------------------------------------------------------------- /src/bootstrap/include/stage-0-busybox.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/bootstrap/include/stage-0-busybox.TARGETS -------------------------------------------------------------------------------- /src/bootstrap/stage-0-binutils.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/bootstrap/stage-0-binutils.TARGETS -------------------------------------------------------------------------------- /src/bootstrap/stage-0-busybox.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/bootstrap/stage-0-busybox.TARGETS -------------------------------------------------------------------------------- /src/bootstrap/stage-0-gcc.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/bootstrap/stage-0-gcc.TARGETS -------------------------------------------------------------------------------- /src/bootstrap/stage-0-make.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/bootstrap/stage-0-make.TARGETS -------------------------------------------------------------------------------- /src/bootstrap/stage-1-gcc.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/bootstrap/stage-1-gcc.TARGETS -------------------------------------------------------------------------------- /src/compilers/clang-16-native.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/compilers/clang-16-native.TARGETS -------------------------------------------------------------------------------- /src/compilers/clang-17-native.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/compilers/clang-17-native.TARGETS -------------------------------------------------------------------------------- /src/compilers/clang-18-native.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/compilers/clang-18-native.TARGETS -------------------------------------------------------------------------------- /src/compilers/clang-19-native.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/compilers/clang-19-native.TARGETS -------------------------------------------------------------------------------- /src/compilers/clang-20-native.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/compilers/clang-20-native.TARGETS -------------------------------------------------------------------------------- /src/compilers/gcc-13-musl-static.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/compilers/gcc-13-musl-static.TARGETS -------------------------------------------------------------------------------- /src/compilers/gcc-13-musl.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/compilers/gcc-13-musl.TARGETS -------------------------------------------------------------------------------- /src/compilers/gcc-13-native.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/compilers/gcc-13-native.TARGETS -------------------------------------------------------------------------------- /src/compilers/gcc-14-musl-static.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/compilers/gcc-14-musl-static.TARGETS -------------------------------------------------------------------------------- /src/compilers/gcc-14-musl.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/compilers/gcc-14-musl.TARGETS -------------------------------------------------------------------------------- /src/compilers/gcc-14-native.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/compilers/gcc-14-native.TARGETS -------------------------------------------------------------------------------- /src/tools/busybox-1.36.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/tools/busybox-1.36.TARGETS -------------------------------------------------------------------------------- /src/tools/cmake-3.27.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/tools/cmake-3.27.TARGETS -------------------------------------------------------------------------------- /src/tools/make-4.4.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/tools/make-4.4.TARGETS -------------------------------------------------------------------------------- /src/tools/python-3.12.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/src/tools/python-3.12.TARGETS -------------------------------------------------------------------------------- /test/TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/test/TARGETS -------------------------------------------------------------------------------- /test/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/test/main.c -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/test/test.sh -------------------------------------------------------------------------------- /toolchains/CC/clang.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/CC/clang.TARGETS -------------------------------------------------------------------------------- /toolchains/CC/compiler+tools.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/CC/compiler+tools.TARGETS -------------------------------------------------------------------------------- /toolchains/CC/foreign/busybox.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/CC/foreign/busybox.TARGETS -------------------------------------------------------------------------------- /toolchains/CC/foreign/cmake.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/CC/foreign/cmake.TARGETS -------------------------------------------------------------------------------- /toolchains/CC/foreign/compiler+tools.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/CC/foreign/compiler+tools.TARGETS -------------------------------------------------------------------------------- /toolchains/CC/foreign/make.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/CC/foreign/make.TARGETS -------------------------------------------------------------------------------- /toolchains/CC/foreign/python.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/CC/foreign/python.TARGETS -------------------------------------------------------------------------------- /toolchains/CC/foreign/tools-all.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/CC/foreign/tools-all.TARGETS -------------------------------------------------------------------------------- /toolchains/CC/gcc.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/CC/gcc.TARGETS -------------------------------------------------------------------------------- /toolchains/busybox.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/busybox.TARGETS -------------------------------------------------------------------------------- /toolchains/clang.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/clang.TARGETS -------------------------------------------------------------------------------- /toolchains/cmake.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/cmake.TARGETS -------------------------------------------------------------------------------- /toolchains/compiler+tools.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/compiler+tools.TARGETS -------------------------------------------------------------------------------- /toolchains/gcc.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/gcc.TARGETS -------------------------------------------------------------------------------- /toolchains/make.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/make.TARGETS -------------------------------------------------------------------------------- /toolchains/patch/busybox.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/patch/busybox.TARGETS -------------------------------------------------------------------------------- /toolchains/patch/compiler+tools.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/patch/compiler+tools.TARGETS -------------------------------------------------------------------------------- /toolchains/patch/tools-all.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/patch/tools-all.TARGETS -------------------------------------------------------------------------------- /toolchains/python.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/python.TARGETS -------------------------------------------------------------------------------- /toolchains/shell/busybox.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/shell/busybox.TARGETS -------------------------------------------------------------------------------- /toolchains/shell/cmake.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/shell/cmake.TARGETS -------------------------------------------------------------------------------- /toolchains/shell/compiler+tools.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/shell/compiler+tools.TARGETS -------------------------------------------------------------------------------- /toolchains/shell/make.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/shell/make.TARGETS -------------------------------------------------------------------------------- /toolchains/shell/python.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/shell/python.TARGETS -------------------------------------------------------------------------------- /toolchains/shell/tools-all.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/shell/tools-all.TARGETS -------------------------------------------------------------------------------- /toolchains/tools-all.TARGETS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/just-buildsystem/bootstrappable-toolchain/HEAD/toolchains/tools-all.TARGETS --------------------------------------------------------------------------------