126b3ca
M Roaming Ruins, M Multeasymap, M Sunny Side Up - ddnet-maps[2020-10-23 09:03:47][demo_recorder]: Recording to 'demos/auto/race/Multeasymap_tmp_30148.demo'
The thread 0x4fe4 has exited with code 0 (0x0).
[2020-10-23 09:04:07][demo_recorder]: Stopped recording
[2020-10-23 09:04:18][client]: disconnecting. reason='unknown'
[2020-10-23 09:04:18][demo_recorder]: Stopped recording
[2020-10-23 09:04:18][demo_recorder]: Stopped recording
The thread 0x6448 has exited with code 0 (0x0).
The thread 0x4454 has exited with code 0 (0x0).
avcore\audiocore\client\audioclient\audioclientcore.cpp(1907)\AUDIOSES.DLL!00007FFE739610EF: (caller: 000000006C81FF21) ReturnHr(1) tid(6908) 80070057 The parameter is incorrect.
'DDNet.exe' (Win32): Unloaded 'C:\Windows\System32\avrt.dll'
The thread 0x695c has exited with code 0 (0x0).
The thread 0x5acc has exited with code 0 (0x0).
The thread 0x6050 has exited with code 0 (0x0).
The thread 0x74a0 has exited with code 0 (0x0).
The thread 0x4950 has exited with code 0 (0x0).
The thread 0xbec has exited with code 0 (0x0).
The thread 0x23a0 has exited with code 0 (0x0).
The thread 0x1918 has exited with code 0 (0x0).
The thread 0x77b0 has exited with code 0 (0x0).
The thread 0x5108 has exited with code 0 (0x0).
The thread 0x58f0 has exited with code 0 (0x0).
The program '[30148] DDNet.exe' has exited with code 0 (0x0).
./DDNet.exe “dbg_gfx 1”
CMakeSettings.json
there is no way to fix itprintf("%s\n", fn());
this could show as being a leak that originates within printf but
char *arg = fn();
printf("%s\n", arg);
this couldnt?target_compile_options(${target} PRIVATE /wd4800) # Implicit conversion of int to bool.
CMake Settings
"addressSanitizerEnabled": true
to the new configurationx64-Debug
right now{
"configurations": [
{
"name": "x64-Debug",
"generator": "Ninja",
"configurationType": "Debug",
"inheritEnvironments": [ "msvc_x64_x64" ],
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "-v",
"ctestCommandArgs": "",
"variables": []
},
{
"name": "x64-Debug-Copy",
"generator": "Ninja",
"configurationType": "Debug",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"installRoot": "${projectDir}\\out\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "-v",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": []
"addressSanitizerEnabled": true
}
]
}
/fsanitize=address
instead of -fsanitize=address
?enableAddressSanitizer
does the correct one for clang-cl/
as far as i knowcmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release ..
nmake
i use this always instead of broken VS Defines _DEBUG, _MT, and _DLL and causes the application to use the debug multithread-specific and DLL-specific version of the run-time library. It also causes the compiler to place the library name MSVCRTD.lib into the .obj file.