qtbase: refresh patch

This commit is contained in:
sbwml 2022-06-29 19:06:30 +08:00
parent 94c8295539
commit 61a69c9b20

View File

@ -1,15 +1,12 @@
--- qtbase-everywhere-src-6.3.0.orig/src/corelib/plugin/qelfparser_p.cpp --- a/src/corelib/plugin/qelfparser_p.cpp
+++ qtbase-everywhere-src-6.3.0/src/corelib/plugin/qelfparser_p.cpp +++ b/src/corelib/plugin/qelfparser_p.cpp
@@ -408,8 +408,12 @@ Q_DECL_UNUSED Q_DECL_COLD_FUNCTION stati @@ -408,7 +408,9 @@ Q_DECL_UNUSED Q_DECL_COLD_FUNCTION static QDebug &operator<<(QDebug &d, ElfHeade
// list definitely not exhaustive! // list definitely not exhaustive!
case EM_NONE: d << ", no machine"; break; case EM_NONE: d << ", no machine"; break;
case EM_ARM: d << ", ARM"; break; case EM_ARM: d << ", ARM"; break;
+#ifdef EM_AARCH64 +#ifdef EM_AARCH64
case EM_AARCH64: d << ", AArch64"; break; case EM_AARCH64: d << ", AArch64"; break;
+#endif +#endif
+#ifdef EM_BLACKFIN #ifdef EM_BLACKFIN
case EM_BLACKFIN: d << ", Blackfin"; break; case EM_BLACKFIN: d << ", Blackfin"; break;
+#endif #endif
case EM_IA_64: d << ", IA-64"; break;
case EM_MIPS: d << ", MIPS"; break;
case EM_PPC: d << ", PowerPC"; break;