mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2024-11-28 10:24:20 +01:00
Malloc override on s2
This commit is contained in:
parent
4401a94aa6
commit
5ed17a9081
@ -395,7 +395,7 @@ class MMSConfig(object):
|
||||
if compiler.target.arch == 'x86_64':
|
||||
compiler.defines += ['X64BITS', 'PLATFORM_64BITS']
|
||||
|
||||
if sdk.name in ['css', 'hl2dm', 'dods', 'sdk2013', 'bms', 'tf2', 'l4d', 'nucleardawn', 'l4d2', 'dota', 'cs2', 'pvkii']:
|
||||
if sdk.name in ['css', 'hl2dm', 'dods', 'sdk2013', 'bms', 'tf2', 'l4d', 'nucleardawn', 'l4d2', 'pvkii']:
|
||||
if compiler.target.platform in ['linux', 'mac']:
|
||||
compiler.defines += ['NO_HOOK_MALLOC', 'NO_MALLOC_OVERRIDE']
|
||||
|
||||
|
@ -94,7 +94,7 @@ bool GetFileOfAddress(void *pAddr, char *buffer, size_t maxlength)
|
||||
return true;
|
||||
}
|
||||
|
||||
#if defined __GNUC__
|
||||
#if defined __GNUC__ && defined(NO_MALLOC_OVERRIDE)
|
||||
void * operator new(size_t size) {
|
||||
return malloc(size);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user