system_time: Add temporary hack for GCC 8 to get ia32intrin.

ia32intrin isn't supposed to be included, only x86intrin is,
but GCC 8 changed some of the __builtin definitions in a
backwards-incompatible way for some of the AVX headers.
So, this is a temporary hack until we are using GCC 8 syslibs
packages.
This commit is contained in:
Augustin Cavalier 2019-05-24 19:14:28 -04:00
parent 3a2175926b
commit ca904ab353

View File

@ -6,7 +6,10 @@
#include <stdint.h>
#include <x86intrin.h>
//#include <x86intrin.h>
#define _X86INTRIN_H_INCLUDED
#include <ia32intrin.h>
static uint64_t cv_factor;