From 245bd9bf789acfd315dedd34e418027a1e6d1c9b Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Sat, 29 Jul 2017 10:31:58 +0200 Subject: configure: prune checks for ancient compilers from some tests these would be caught by the central verifyspec test, if we even got that far. Change-Id: I3eda80c4614b94f869d907f0a40166f4914ea692 Reviewed-by: Thiago Macieira --- config.tests/common/sse2/sse2.cpp | 3 --- config.tests/unix/reduce_exports/fvisibility.c | 6 ------ 2 files changed, 9 deletions(-) (limited to 'config.tests') diff --git a/config.tests/common/sse2/sse2.cpp b/config.tests/common/sse2/sse2.cpp index 7ae0eaf4a7..8b4d5334b5 100644 --- a/config.tests/common/sse2/sse2.cpp +++ b/config.tests/common/sse2/sse2.cpp @@ -38,9 +38,6 @@ ****************************************************************************/ #include -#if defined(__GNUC__) && __GNUC__ < 4 && __GNUC_MINOR__ < 3 -#error GCC < 3.2 is known to create internal compiler errors with our MMX code -#endif int main(int, char**) { diff --git a/config.tests/unix/reduce_exports/fvisibility.c b/config.tests/unix/reduce_exports/fvisibility.c index 71af9d99a3..12055ead46 100644 --- a/config.tests/unix/reduce_exports/fvisibility.c +++ b/config.tests/unix/reduce_exports/fvisibility.c @@ -38,14 +38,8 @@ ****************************************************************************/ #if defined(__GNUC__) -# if (__GNUC__ < 4) -# error "GCC3 with backported visibility patch is known to miscompile Qt" -# endif __attribute((visibility("default"))) void blah(); #elif defined(__SUNPRO_CC) -# if (__SUNPRO_CC < 0x0550) -# error "SunStudio 8 or later is required for ELF visibility" -# endif __global void blah(); #else # error "GCC4+ or SunStudio 8+ are required to support ELF visibility" -- cgit v1.2.3