diff options
Diffstat (limited to 'innobase/include/univ.i')
-rw-r--r-- | innobase/include/univ.i | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/innobase/include/univ.i b/innobase/include/univ.i index 8870d80f611..160a435319a 100644 --- a/innobase/include/univ.i +++ b/innobase/include/univ.i @@ -14,6 +14,13 @@ Created 1/20/1994 Heikki Tuuri #include <windows.h> +/* When compiling for Itanium IA64, undefine the flag below to prevent use +of 32-bit assembler */ + +#ifndef WIN64 +#define UNIV_CAN_USE_X86_ASSEMBLER +#endif + /* If you want to check for errors with compiler level -W4, comment out the above include of windows.h and let the following defines be defined: @@ -71,13 +78,14 @@ memory is read outside the allocated blocks. */ */ /* Make a non-inline debug version */ + /* #define UNIV_DEBUG #define UNIV_MEM_DEBUG -#define UNIV_SEARCH_DEBUG +#define UNIV_SYNC_DEBUG #define UNIV_IBUF_DEBUG -#define UNIV_SYNC_DEBUG +#define UNIV_SEARCH_DEBUG #define UNIV_SYNC_PERF_STAT #define UNIV_SEARCH_PERF_STAT */ |