First commit.

This commit is contained in:
Robin Davies
2021-08-15 12:42:46 -04:00
commit d8a6022947
264 changed files with 95068 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
#include "pch.h"
// Options for GCC Address Sanitizer.
extern "C" {
const char* __asan_default_options() { return
"detect_leaks=0" // undesirable behavior on abnormal termination.
":alloc_dealloc_mismatch=0" // Guitarix components trigger this. It's not actually a problem on GCC.
":new_delete_type_mismatch=0" //GxTuner
":print_stacktrace=1"
":halt_on_error=1"
;
}
}