-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ALL: Upgrade toolchains to Debian Bookworm
GCW0 toolchain can't be built anymore as Mesa build requires Python 2 which is not available anymore. Helper packages got upgraded and configure arguments and several patches must be updated. New GCC defaults to a too modern C++ version to compile old GCC. Debian now provides a modern enough CLang hence switching to it.
- Loading branch information
1 parent
38f397f
commit 737891c
Showing
109 changed files
with
429 additions
and
62,040 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
26 changes: 26 additions & 0 deletions
26
toolchains/amigaos4/packages/toolchain/patches/fix-werror.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,26 @@ | ||
commit c9d88e3ec1e36c71e75c9fc08ba9614ffe9604ff | ||
Author: Le Philousophe <lephilousophe@users.noreply.github.com> | ||
Date: Sun Aug 6 20:11:00 2023 +0200 | ||
|
||
Disable Werror which fails with latest GCC | ||
|
||
diff --git a/binutils-build/Makefile b/binutils-build/Makefile | ||
index 0675680..a4d3f9b 100644 | ||
--- a/binutils-build/Makefile | ||
+++ b/binutils-build/Makefile | ||
@@ -18,6 +18,7 @@ all: cross | ||
cross: | ||
mkdir -p $(CROSS_BUILD_DIR) | ||
cd $(CROSS_BUILD_DIR); CFLAGS="-Wno-switch -Wno-unused" $(REAL_SRC_DIR)/configure \ | ||
+ --disable-werror \ | ||
--enable-plugins \ | ||
--target=ppc-amigaos \ | ||
--prefix=$(PREFIX) | ||
@@ -26,6 +27,7 @@ cross: | ||
native: | ||
mkdir -p $(NATIVE_BUILD_DIR) | ||
cd $(NATIVE_BUILD_DIR); LDFLAGS="-lunix" CFLAGS="-Wno-switch -Wno-unused" $(REAL_SRC_DIR)/configure \ | ||
+ --disable-werror \ | ||
--target=ppc-amigaos \ | ||
--host=ppc-amigaos \ | ||
--disable-nls \ |
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
132 changes: 0 additions & 132 deletions
132
toolchains/android-common/packages/openssl/patches/00_modernize_build_system.patch
This file was deleted.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
toolchains/android-common/packages/openssl/patches/fix-android-build.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,19 @@ | ||
commit 9ba0363c93eb3c2c7178f5a6b7a28466239c3eed | ||
Author: Le Philousophe <lephilousophe@users.noreply.github.com> | ||
Date: Sun Aug 6 22:51:42 2023 +0200 | ||
|
||
Fix Android build | ||
|
||
diff --git a/Configurations/15-android.conf b/Configurations/15-android.conf | ||
index 41ad9223e0..237b5f8735 100644 | ||
--- a/Configurations/15-android.conf | ||
+++ b/Configurations/15-android.conf | ||
@@ -224,7 +224,7 @@ my %targets = ( | ||
inherit_from => [ "android" ], | ||
bn_ops => add("RC4_CHAR"), | ||
asm_arch => 'armv4', | ||
- perlasm_scheme => "void", | ||
+ perlasm_scheme => "linux", | ||
}, | ||
"android-arm64" => { | ||
inherit_from => [ "android" ], |
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
Oops, something went wrong.