diff options
author | Chris Robinson <[email protected]> | 2014-08-11 14:19:15 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-08-11 14:19:15 -0700 |
commit | 74c8de6372bc84916551a6685f337e69017eb239 (patch) | |
tree | a2c1cd64d5cf67b6c6256f13fdec4942aa4b1f3b /config.h.in | |
parent | e3ee534c3961c4a7c9961019a242693e0da402ef (diff) |
Try the __cpuid intrinsic if GCC's __get_cpuid isn't available
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index 27184824..af0d8bfd 100644 --- a/config.h.in +++ b/config.h.in @@ -148,6 +148,9 @@ /* Define if we have cpuid.h */ #cmakedefine HAVE_CPUID_H +/* Define if we have intrin.h */ +#cmakedefine HAVE_INTRIN_H + /* Define if we have sys/sysconf.h */ #cmakedefine HAVE_SYS_SYSCONF_H @@ -169,6 +172,9 @@ /* Define if we have GCC's __get_cpuid() */ #cmakedefine HAVE_GCC_GET_CPUID +/* Define if we have the __cpuid() intrinsic */ +#cmakedefine HAVE_CPUID_INTRINSIC + /* Define if we have _controlfp() */ #cmakedefine HAVE__CONTROLFP |