As s390x was the only one remaining, it has now been excluded. This was best done with an update of the source tree to match upstream. This is turn caused additional patch updates. With s390x gone, all of the big-endian patches can be removed, simplifying things enormously. This is the biggest change. Several other patches that are no longer needed due to changes in Fedora builds (ld flags, for example), or that are no longer needed (such as armv7) have also been removed. Further cleanup likely to follow. Signed-off-by: Al Stone <ahs3@ahs3.net>
25 lines
936 B
Diff
25 lines
936 B
Diff
Index: acpica-unix2-20240321/source/components/utilities/utdebug.c
|
|
===================================================================
|
|
--- acpica-unix2-20240321.orig/source/components/utilities/utdebug.c
|
|
+++ acpica-unix2-20240321/source/components/utilities/utdebug.c
|
|
@@ -58,6 +58,10 @@ static const char *AcpiGbl_Fun
|
|
static const char *AcpiGbl_FunctionExitPrefix = "----Exit-";
|
|
|
|
|
|
+#if defined(__GNUC__) && (__GNUC__ > 11)
|
|
+#pragma GCC diagnostic push
|
|
+#pragma GCC diagnostic ignored "-Wdangling-pointer"
|
|
+#endif
|
|
/*******************************************************************************
|
|
*
|
|
* FUNCTION: AcpiUtInitStackPtrTrace
|
|
@@ -120,6 +124,9 @@ AcpiUtTrackStackPtr (
|
|
AcpiGbl_DeepestNesting = AcpiGbl_NestingLevel;
|
|
}
|
|
}
|
|
+#if defined(__GNUC__) && (__GNUC__ > 11)
|
|
+#pragma GCC diagnostic pop
|
|
+#endif
|
|
|
|
|
|
/*******************************************************************************
|