summaryrefslogtreecommitdiffstats
path: root/config.tests
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2014-06-16 12:12:44 -0700
committerThiago Macieira <thiago.macieira@intel.com>2014-06-17 17:20:03 +0200
commit65a1e1e412445e44215d120b847fa06af0b11c8f (patch)
treefebdf1a88c1e70c675ee7c67b38ebf13b48305b5 /config.tests
parentbf2ec0183cb62034f2a4e700b7ab741371fcb106 (diff)
Remove the ARCH_FULL output from config.tests/arch
The next commit will add something to ARCH_FULL that requires qconfig.h. That means we can't extract the full info until qconfig.h is created, which hasn't happened yet at the time that config.tests/arch is compiled. Change-Id: Icbbd8c448423a93296a986ede3771e82e4d61e07 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Diffstat (limited to 'config.tests')
-rw-r--r--config.tests/arch/arch.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/config.tests/arch/arch.cpp b/config.tests/arch/arch.cpp
index 4e19ca6fb2..a5718c1d90 100644
--- a/config.tests/arch/arch.cpp
+++ b/config.tests/arch/arch.cpp
@@ -47,9 +47,6 @@
extern const char msg[];
const char msg[] = "==Qt=magic=Qt== Architecture:" ARCH_PROCESSOR;
-extern const char msgfull[];
-const char msgfull[] = "==Qt=magic=Qt== Full Architecture:" ARCH_FULL;
-
extern const char msg2[];
const char msg2[] = "==Qt=magic=Qt== Sub-architecture:"
// This is the list of features found in GCC or MSVC
@@ -239,6 +236,5 @@ const char msg2[] = "==Qt=magic=Qt== Sub-architecture:"
int main()
{
puts(msg);
- puts(msgfull);
puts(msg2);
}