Force NO_MALLOC_OVERRIDE on for linux due to recent tier0 changes. (bug 5521).

This commit is contained in:
Nicholas Hastings 2012-10-26 14:44:39 -04:00
parent 0905e8a48f
commit 3a36e4b850
2 changed files with 8 additions and 0 deletions

View File

@ -14,6 +14,10 @@
#pragma once
#endif
#if defined(_LINUX)
#define NO_MALLOC_OVERRIDE
#endif
// Define this in release to get memory tracking even in release builds
//#define USE_MEM_DEBUG 1

View File

@ -11,6 +11,10 @@
// to include this potentially multiple times (since we can deactivate debugging
// by including memdbgoff.h)
#if defined(_LINUX)
#define NO_MALLOC_OVERRIDE
#endif
#if !defined(STEAM) && !defined(NO_MALLOC_OVERRIDE)
// SPECIAL NOTE #2: This must be the final include in a .cpp or .h file!!!