diff options
Diffstat (limited to 'include/llvm/Config/llvm-config.h.cmake')
-rw-r--r-- | include/llvm/Config/llvm-config.h.cmake | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/include/llvm/Config/llvm-config.h.cmake b/include/llvm/Config/llvm-config.h.cmake index 4daa00f3bc40..872a31553d11 100644 --- a/include/llvm/Config/llvm-config.h.cmake +++ b/include/llvm/Config/llvm-config.h.cmake @@ -56,15 +56,15 @@ /* Define if this is Unixish platform */ #cmakedefine LLVM_ON_UNIX ${LLVM_ON_UNIX} -/* Define if this is Win32ish platform */ -#cmakedefine LLVM_ON_WIN32 ${LLVM_ON_WIN32} - /* Define if we have the Intel JIT API runtime support library */ #cmakedefine01 LLVM_USE_INTEL_JITEVENTS /* Define if we have the oprofile JIT-support library */ #cmakedefine01 LLVM_USE_OPROFILE +/* Define if we have the perf JIT-support library */ +#cmakedefine01 LLVM_USE_PERF + /* Major version of the LLVM API */ #define LLVM_VERSION_MAJOR ${LLVM_VERSION_MAJOR} @@ -77,4 +77,9 @@ /* LLVM version string */ #define LLVM_VERSION_STRING "${PACKAGE_VERSION}" +/* Whether LLVM records statistics for use with GetStatistics(), + * PrintStatistics() or PrintStatisticsJSON() + */ +#cmakedefine01 LLVM_FORCE_ENABLE_STATS + #endif |