summaryrefslogtreecommitdiff
blob: fba0ad2d86ebc54938ed9dee95c501197c39c607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--- a/include/host_config.h
+++ b/include/host_config.h
@@ -110,11 +110,11 @@
 
 #if defined(__GNUC__)
 
-#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 9)
+#if __GNUC__ > 5 || (__GNUC__ == 5 && __GNUC_MINOR__ > 4)
 
-#error -- unsupported GNU version! gcc versions later than 4.9 are not supported!
+#error -- unsupported GNU version! gcc versions later than 5.4 are not supported!
 
-#endif /* __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ > 9) */
+#endif /* __GNUC__ > 5 || (__GNUC__ == 5 && __GNUC_MINOR__ > 4) */
 
 #if defined(__APPLE__) && defined(__MACH__) && !defined(__clang__)
 #error -- clang and clang++ are the only supported host compilers on Mac OS X!