disable new/mallloc override on non-windows platforms( #299 )

This commit is contained in:
nillerusr 2023-10-08 00:50:14 +03:00
parent 6ba7d93841
commit e8193bc7b6

View file

@ -239,6 +239,10 @@ def define_platform(conf):
'_DLL_EXT=.so'
])
if conf.env.DEST_OS != 'win32':
conf.define('NO_MALLOC_OVERRIDE', 1)
conf.define('NO_MEMOVERRIDE_NEW_DELETE', 1)
if conf.options.DEBUG_ENGINE:
conf.env.append_unique('DEFINES', [
'DEBUG', '_DEBUG'