forked from OSchip/llvm-project
tsan: parse symbolize/external_symbolizer_path common flags
llvm-svn: 193236
This commit is contained in:
parent
49416cf126
commit
1ec0fd4071
|
@ -20,6 +20,8 @@ namespace __sanitizer {
|
|||
|
||||
void ParseCommonFlagsFromString(const char *str) {
|
||||
CommonFlags *f = common_flags();
|
||||
ParseFlag(str, &f->symbolize, "symbolize");
|
||||
ParseFlag(str, &f->external_symbolizer_path, "external_symbolizer_path");
|
||||
ParseFlag(str, &f->malloc_context_size, "malloc_context_size");
|
||||
ParseFlag(str, &f->strip_path_prefix, "strip_path_prefix");
|
||||
ParseFlag(str, &f->fast_unwind_on_fatal, "fast_unwind_on_fatal");
|
||||
|
|
Loading…
Reference in New Issue