-
Notifications
You must be signed in to change notification settings - Fork 571
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 0_Rootfs: Add GCC 14 * GCC 14: Remove outdated patches * GCC 14: Build with binutils 2.43.1 * GCC 14: Update cctools * [GCC 14] Fix building newer cctools * [GCC 14] Add some version-based conditionals in the scripts * [GCC 14] Build newer libtapi * [GCC 14] Add patch to make building libgcc for macOS work * [GCC 14] Update libtapi to latest commit which includes our patch * [GCC 14] Simplify logic to set `LIB64` directory * [GCC 14] Fix glibc musl rejection patch * [GCC 14] Add comments about necessity to make backward-compatible changes * [GCC 14] Delete dummy `libc.so` in riscv64-linux-gnu build --------- Co-authored-by: Mosè Giordano <mose@gnu.org>
Showing
80 changed files
with
408 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include("../gcc_common.jl") | ||
build_and_upload_gcc(v"14.2.0") |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/binutils_deterministic_dlltool.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/binutils_deterministic_dlltool.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/binutils_freebsd_symbol_versioning.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/binutils_freebsd_symbol_versioning.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/gcc/gcc1210-libcc1-musl-poisoned-calloc.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../../GCCBootstrap@12/bundled/patches/gcc/gcc1210-libcc1-musl-poisoned-calloc.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/gcc/gcc1210_mingw_include.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../../GCCBootstrap@12/bundled/patches/gcc/gcc1210_mingw_include.patch |
39 changes: 39 additions & 0 deletions
39
.../bundled/patches/gcc/gcc1420-Increase-fallback-min-macOS-version-for-libgcc-to-10.8.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
From eb521cd67a69fdb0497feee5235e0f355a18d3c1 Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?Mos=C3=A8=20Giordano?= <mose@gnu.org> | ||
Date: Sat, 4 Jan 2025 01:48:23 +0100 | ||
Subject: [PATCH] Increase fallback min macOS version for libgcc to 10.8 | ||
|
||
`-mmacosx-version-min=10.5` seems to cause problems with ld64 from cctools | ||
(https://github.com/JuliaPackaging/Yggdrasil/pull/10132#issuecomment-2569925646), | ||
and in any case in Julia/BinaryBuilder we support macOS 10.12 at minimum. | ||
--- | ||
libgcc/config.host | 6 +++--- | ||
1 file changed, 3 insertions(+), 3 deletions(-) | ||
|
||
diff --git a/libgcc/config.host b/libgcc/config.host | ||
index e75a7af64..12aa05581 100644 | ||
--- a/libgcc/config.host | ||
+++ b/libgcc/config.host | ||
@@ -240,7 +240,7 @@ case ${host} in | ||
tmake_file="t-darwin-min-8 $tmake_file" | ||
;; | ||
*-*-darwin9* | *-*-darwin1[0-7]*) | ||
- tmake_file="t-darwin-min-5 $tmake_file" | ||
+ tmake_file="t-darwin-min-8 $tmake_file" | ||
;; | ||
*-*-darwin[4-8]*) | ||
tmake_file="t-darwin-min-1 $tmake_file" | ||
@@ -248,8 +248,8 @@ case ${host} in | ||
*) | ||
# Fall back to configuring for the oldest system known to work with | ||
# all archs and the current sources. | ||
- tmake_file="t-darwin-min-5 $tmake_file" | ||
- echo "Warning: libgcc configured to support macOS 10.5" 1>&2 | ||
+ tmake_file="t-darwin-min-8 $tmake_file" | ||
+ echo "Warning: libgcc configured to support macOS 10.8" 1>&2 | ||
;; | ||
esac | ||
# We are not using libtool to build the libs here, so we need to replicate | ||
-- | ||
2.31.0 | ||
|
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/gcc1020_revert-generic-morestack_c.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@10/bundled/patches/gcc1020_revert-generic-morestack_c.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/gcc485_triplet_prefixed_cxx_headers.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/gcc485_triplet_prefixed_cxx_headers.patch |
1 change: 1 addition & 0 deletions
1
...GCCBootstrap@14/bundled/patches/gcc520-libgomp-Don-t-hard-code-MS-printf-attributes.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@5/bundled/patches/gcc520-libgomp-Don-t-hard-code-MS-printf-attributes.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/gcc9_vsnprintf-str.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@9/bundled/patches/gcc9_vsnprintf-str.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-01.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-01.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-02.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-02.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-03.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-03.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-04.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-04.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-05.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-05.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-06.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-06.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-07.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-07.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-08.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-08.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-09.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-09.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-10.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-10.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-11.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-11.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-12.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-12.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-13.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-13.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-14.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-14.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-15.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-15.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-16.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-16.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-17.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-17.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-18.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-18.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-19.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-19.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-20.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-20.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-21.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-21.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-22.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-22.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-23.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-23.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-24.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-24.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-25.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-25.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-26.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-26.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-27.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-27.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-28.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-28.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-29.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-29.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-30.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-30.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-31.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-31.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-32.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-32.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-33.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-33.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-34.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-34.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-35.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-35.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-36.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-36.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-37.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-37.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-38.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-38.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-39.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-39.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-40.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-40.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-41.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-41.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-42.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-42.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-43.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-43.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-44.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-44.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-45.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-45.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-46.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-46.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-47-pwr6-mtfsf.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-47-pwr6-mtfsf.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-48-ldbl_high.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc-ppc64le-48-ldbl_high.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc-ppc64le-49-gcc10-cache_line_size-common.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@10/bundled/patches/glibc-ppc64le-49-gcc10-cache_line_size-common.patch |
1 change: 1 addition & 0 deletions
1
...rap@14/bundled/patches/glibc-remove-__ASSUME_AT_RANDOM-in-_dl_setup_stack_chk_guard.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@12/bundled/patches/glibc-remove-__ASSUME_AT_RANDOM-in-_dl_setup_stack_chk_guard.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc217_gcc_version.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@10/bundled/patches/glibc217_gcc_version.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc219_gcc_version.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@10/bundled/patches/glibc219_gcc_version.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc_aarch64_relocation.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc_aarch64_relocation.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc_arm_gcc_fix.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc_arm_gcc_fix.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc_gcc_version.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc_gcc_version.patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc_i686_asm.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@14/bundled/patches/glibc_make_version.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@4/bundled/patches/glibc_make_version.patch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../GCCBootstrap@12/bundled/patches/glibc_movq_fix.patch |
Oops, something went wrong.