diff options
Diffstat (limited to 'libcpp/lex.c')
-rw-r--r-- | libcpp/lex.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libcpp/lex.c b/libcpp/lex.c index 2247386..298dd7f 100644 --- a/libcpp/lex.c +++ b/libcpp/lex.c @@ -471,7 +471,11 @@ search_line_sse42 (const uchar *s, const uchar *end) /* Check the CPU capabilities. */ +#if (GCC_VERSION >= 5000) #include "../gcc/config/i386/cpuid.h" +#else +#include <cpuid.h> +#endif typedef const uchar * (*search_line_fast_type) (const uchar *, const uchar *); static search_line_fast_type search_line_fast; |