summaryrefslogtreecommitdiffstats
path: root/config.tests/arch
diff options
context:
space:
mode:
authorLisandro Damián Nicanor Pérez Meyer <perezmeyer@gmail.com>2014-03-15 09:47:29 -0300
committerThiago Macieira <thiago.macieira@intel.com>2014-06-27 03:02:53 +0200
commit36009d6b8f040b0c2731c05d4911b5c95b5a7326 (patch)
tree00a94098e013ef36a1f446d70950deb82c43565c /config.tests/arch
parente83c52a997dd84f3f69c5a9d3b787ee04c6d78f1 (diff)
Create the 64 bits version strings for MIPS, SPARC and S390
Note that the specialization has to be declared before the common arch because of how qprocessordetection.h sets this variables. Else you would still get mips on a mips64 system. Change-Id: Ief949a5d30aa217c4bfda2d674ec2683e6c130c4 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'config.tests/arch')
-rw-r--r--config.tests/arch/arch.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/config.tests/arch/arch.cpp b/config.tests/arch/arch.cpp
index b3c0d3b7d2..e08183c193 100644
--- a/config.tests/arch/arch.cpp
+++ b/config.tests/arch/arch.cpp
@@ -61,14 +61,20 @@ const char msg[] = "==Qt=magic=Qt== Architecture:"
"x86_64"
#elif defined(Q_PROCESSOR_IA64)
"ia64"
+#elif defined(Q_PROCESSOR_MIPS_64)
+"mips64"
#elif defined(Q_PROCESSOR_MIPS)
"mips"
#elif defined(Q_PROCESSOR_POWER)
"power"
+#elif defined(Q_PROCESSOR_S390_X)
+"s390x"
#elif defined(Q_PROCESSOR_S390)
"s390"
#elif defined(Q_PROCESSOR_SH)
"sh"
+#elif defined(Q_PROCESSORS_SPARC_64)
+"sparc64"
#elif defined(Q_PROCESSOR_SPARC)
"sparc"
#else