-
Notifications
You must be signed in to change notification settings - Fork 548
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new GCC shard for iains' GCC port to Darwin Aarch64 (#1626)
Iain Sandoe is working on a port of GCC to Darwin Aaarch64 over at https://github.com/iains/gcc-darwin-arm64. This is effort is what Apple recommended we use for Fortran support. To help with testing the port, define a new GCC shard that builds Iain's fork of GCC, as well as using a local copy of the macOS SDK, so it can be built against the NDA'd version of the Darwin AArch64 SDK for testing.
- Loading branch information
Showing
69 changed files
with
164 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.sdk |
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"11.0.0-iains") |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@11-IainS/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@11-IainS/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@11-IainS/bundled/patches/gcc485_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@4/bundled/patches/gcc485_mingw_include.patch |
69 changes: 69 additions & 0 deletions
69
0_RootFS/GCCBootstrap@11-IainS/bundled/patches/gcc810_linker_madness_on_osx.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,69 @@ | ||
From 5dc1001e6a8ed88b11080d5fe065aaa4960e7415 Mon Sep 17 00:00:00 2001 | ||
From: Iain Sandoe <iain@codesourcery.com> | ||
Date: Fri, 27 Jul 2018 14:10:04 +0100 | ||
Subject: [PATCH] pr81033-v2 | ||
|
||
--- | ||
gcc/dwarf2out.c | 11 +++++++++-- | ||
gcc/final.c | 3 +++ | ||
2 files changed, 12 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c | ||
index 208f2e97e7..806b081605 100644 | ||
--- a/gcc/dwarf2out.c | ||
+++ b/gcc/dwarf2out.c | ||
@@ -297,6 +297,10 @@ static unsigned int rnglist_idx; | ||
#define FUNC_BEGIN_LABEL "LFB" | ||
#endif | ||
|
||
+#ifndef FUNC_SECOND_SECT_LABEL | ||
+#define FUNC_SECOND_SECT_LABEL "LFSB" | ||
+#endif | ||
+ | ||
#ifndef FUNC_END_LABEL | ||
#define FUNC_END_LABEL "LFE" | ||
#endif | ||
@@ -1212,21 +1216,24 @@ static void set_cur_line_info_table (section *); | ||
void | ||
dwarf2out_switch_text_section (void) | ||
{ | ||
+ char label[MAX_ARTIFICIAL_LABEL_BYTES]; | ||
section *sect; | ||
dw_fde_ref fde = cfun->fde; | ||
|
||
gcc_assert (cfun && fde && fde->dw_fde_second_begin == NULL); | ||
|
||
+ ASM_GENERATE_INTERNAL_LABEL (label, FUNC_SECOND_SECT_LABEL, | ||
+ current_function_funcdef_no); | ||
+ | ||
+ fde->dw_fde_second_begin = xstrdup (label); | ||
if (!in_cold_section_p) | ||
{ | ||
fde->dw_fde_end = crtl->subsections.cold_section_end_label; | ||
- fde->dw_fde_second_begin = crtl->subsections.hot_section_label; | ||
fde->dw_fde_second_end = crtl->subsections.hot_section_end_label; | ||
} | ||
else | ||
{ | ||
fde->dw_fde_end = crtl->subsections.hot_section_end_label; | ||
- fde->dw_fde_second_begin = crtl->subsections.cold_section_label; | ||
fde->dw_fde_second_end = crtl->subsections.cold_section_end_label; | ||
} | ||
have_multiple_function_sections = true; | ||
diff --git a/gcc/final.c b/gcc/final.c | ||
index 6fa4acdaa2..2572325265 100644 | ||
--- a/gcc/final.c | ||
+++ b/gcc/final.c | ||
@@ -2223,6 +2223,9 @@ final_scan_insn_1 (rtx_insn *insn, FILE *file, int optimize_p ATTRIBUTE_UNUSED, | ||
ASM_OUTPUT_LABEL (asm_out_file, | ||
IDENTIFIER_POINTER (cold_function_name)); | ||
#endif | ||
+ if (dwarf2out_do_frame () | ||
+ && cfun->fde->dw_fde_second_begin != NULL) | ||
+ ASM_OUTPUT_LABEL (asm_out_file, cfun->fde->dw_fde_second_begin); | ||
} | ||
break; | ||
|
||
-- | ||
2.17.1 | ||
|
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/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@11-IainS/bundled/patches/glibc_fix_obstack_compat.diff
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_fix_obstack_compat.diff |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@11-IainS/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 |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@11-IainS/bundled/patches/glibc_i686_asm.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@11-IainS/bundled/patches/glibc_musl_rejection.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_musl_rejection.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@11-IainS/bundled/patches/glibc_musl_rejection_old.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_musl_rejection_old.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@11-IainS/bundled/patches/glibc_nocommon.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_nocommon.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@11-IainS/bundled/patches/glibc_powerpc64le_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_powerpc64le_gcc_fix.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@11-IainS/bundled/patches/glibc_regexp_nocommon.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_regexp_nocommon.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@11-IainS/bundled/patches/glibc_sunrpc.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_sunrpc.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@11-IainS/bundled/patches/libtapi_musl.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/libtapi_musl.patch |
1 change: 1 addition & 0 deletions
1
0_RootFS/GCCBootstrap@11-IainS/bundled/patches/mingw_gcc710_i686.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/mingw_gcc710_i686.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
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