forked from OSchip/llvm-project
Add FreeBSD support to the Asan symbolization script
Differential Revision: http://reviews.llvm.org/D4560 llvm-svn: 213370
This commit is contained in:
parent
0fc933d6b8
commit
5f5adb8ed5
|
|
@ -328,7 +328,7 @@ class SymbolizationLoop(object):
|
|||
# E.g. in Chrome several binaries may share a single .dSYM.
|
||||
self.binary_name_filter = binary_name_filter
|
||||
self.system = os.uname()[0]
|
||||
if self.system not in ['Linux', 'Darwin']:
|
||||
if self.system not in ['Linux', 'Darwin', 'FreeBSD']:
|
||||
raise Exception('Unknown system')
|
||||
self.llvm_symbolizer = None
|
||||
self.frame_no = 0
|
||||
|
|
|
|||
Loading…
Reference in New Issue