config-linux.h 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #ifndef THIRD_PARTY_SNAPPY_OPENSOURCE_CMAKE_CONFIG_H_
  2. #define THIRD_PARTY_SNAPPY_OPENSOURCE_CMAKE_CONFIG_H_
  3. /* Define to 1 if the compiler supports __attribute__((always_inline)). */
  4. #define HAVE_ATTRIBUTE_ALWAYS_INLINE 0
  5. /* Define to 1 if the compiler supports __builtin_ctz and friends. */
  6. #define HAVE_BUILTIN_CTZ 1
  7. /* Define to 1 if the compiler supports __builtin_expect. */
  8. #define HAVE_BUILTIN_EXPECT 1
  9. /* Define to 1 if the compiler supports __builtin_prefetch. */
  10. #define HAVE_BUILTIN_PREFETCH 1
  11. /* Define to 1 if you have a definition for mmap() in <sys/mman.h>. */
  12. #define HAVE_FUNC_MMAP 1
  13. /* Define to 1 if you have a definition for sysconf() in <unistd.h>. */
  14. #define HAVE_FUNC_SYSCONF 1
  15. /* Define to 1 if you have the `lzo2' library (-llzo2). */
  16. #define HAVE_LIBLZO2 0
  17. /* Define to 1 if you have the `z' library (-lz). */
  18. #define HAVE_LIBZ 0
  19. /* Define to 1 if you have the `lz4' library (-llz4). */
  20. #define HAVE_LIBLZ4 0
  21. /* Define to 1 if you have the <sys/mman.h> header file. */
  22. #define HAVE_SYS_MMAN_H 1
  23. /* Define to 1 if you have the <sys/resource.h> header file. */
  24. #define HAVE_SYS_RESOURCE_H 1
  25. /* Define to 1 if you have the <sys/time.h> header file. */
  26. #define HAVE_SYS_TIME_H 1
  27. /* Define to 1 if you have the <sys/uio.h> header file. */
  28. #define HAVE_SYS_UIO_H 1
  29. /* Define to 1 if you have the <unistd.h> header file. */
  30. #define HAVE_UNISTD_H 1
  31. /* Define to 1 if you have the <windows.h> header file. */
  32. #define HAVE_WINDOWS_H 0
  33. /* Define to 1 if you target processors with SSSE3+ and have <tmmintrin.h>. */
  34. #define SNAPPY_HAVE_SSSE3 0
  35. /* Define to 1 if you target processors with SSE4.2 and have <crc32intrin.h>. */
  36. #define SNAPPY_HAVE_X86_CRC32 0
  37. /* Define to 1 if you target processors with BMI2+ and have <bmi2intrin.h>. */
  38. #define SNAPPY_HAVE_BMI2 0
  39. /* Define to 1 if you target processors with NEON and have <arm_neon.h>. */
  40. #define SNAPPY_HAVE_NEON 0
  41. /* Define to 1 if you have <arm_neon.h> and <arm_acle.h> and want to optimize
  42. compression speed by using __crc32cw from <arm_acle.h>. */
  43. #define SNAPPY_HAVE_NEON_CRC32 0
  44. /* Define to 1 if your processor stores words with the most significant byte
  45. first (like Motorola and SPARC, unlike Intel and VAX). */
  46. #define SNAPPY_IS_BIG_ENDIAN 0
  47. #endif // THIRD_PARTY_SNAPPY_OPENSOURCE_CMAKE_CONFIG_H_