summaryrefslogtreecommitdiffstats
path: root/src/corelib/plugin
diff options
context:
space:
mode:
authorIlya Fedin <fedin-ilja2010@ya.ru>2022-04-12 14:02:36 +0400
committerIlya Fedin <fedin-ilja2010@ya.ru>2022-04-13 03:24:05 +0400
commit311d29d2261a7e0689340c4c1322138f8234da7b (patch)
tree00da5f13b99d47e471978ab0de3b1999bfa065bf /src/corelib/plugin
parent0a17a0da618a9dc8151aac4dff567326c0cb8a2a (diff)
Fix build on CentOS 7
This little change fixes the build on CentOS 7 Pick-to: 6.3 Change-Id: Ic9717147c10ca78e36d6311944de417c6420211d Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/plugin')
-rw-r--r--src/corelib/plugin/qelfparser_p.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/corelib/plugin/qelfparser_p.cpp b/src/corelib/plugin/qelfparser_p.cpp
index 21f6f817e4..8c77a48570 100644
--- a/src/corelib/plugin/qelfparser_p.cpp
+++ b/src/corelib/plugin/qelfparser_p.cpp
@@ -411,7 +411,9 @@ Q_DECL_UNUSED Q_DECL_COLD_FUNCTION static QDebug &operator<<(QDebug &d, ElfHeade
case EM_NONE: d << ", no machine"; break;
case EM_ARM: d << ", ARM"; break;
case EM_AARCH64: d << ", AArch64"; break;
+#ifdef EM_BLACKFIN
case EM_BLACKFIN: d << ", Blackfin"; break;
+#endif
case EM_IA_64: d << ", IA-64"; break;
case EM_MIPS: d << ", MIPS"; break;
case EM_PPC: d << ", PowerPC"; break;