tsan: parse symbolize/external_symbolizer_path common flags

llvm-svn: 193236
This commit is contained in:
Dmitry Vyukov 2013-10-23 09:00:49 +00:00
parent 49416cf126
commit 1ec0fd4071
1 changed files with 2 additions and 0 deletions

View File

@ -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");