CI: Disable debug_symbols on Travis/AppVeyor
Also increase AppVeyor cache size to 1024, should match what is available for us in the free plan: https://www.appveyor.com/docs/build-cache/#cache-size-beta And drop obsolete debug_release option for Windows, superseded by target=release and debug_symbols=yes.
This commit is contained in:
@ -183,12 +183,6 @@ def configure_msvc(env, manual_msvc_config):
|
||||
env.Append(LINKFLAGS=['/SUBSYSTEM:CONSOLE'])
|
||||
env.Append(LINKFLAGS=['/OPT:REF'])
|
||||
|
||||
elif (env["target"] == "debug_release"):
|
||||
env.Append(CCFLAGS=['/Z7', '/Od'])
|
||||
env.Append(LINKFLAGS=['/DEBUG'])
|
||||
env.Append(LINKFLAGS=['/SUBSYSTEM:WINDOWS'])
|
||||
env.Append(LINKFLAGS=['/ENTRY:mainCRTStartup'])
|
||||
|
||||
elif (env["target"] == "debug"):
|
||||
env.AppendUnique(CCFLAGS=['/Z7', '/Od', '/EHsc'])
|
||||
env.AppendUnique(CPPDEFINES = ['DEBUG_ENABLED', 'DEBUG_MEMORY_ENABLED',
|
||||
|
||||
Reference in New Issue
Block a user