| Index: tools/mac/show_mod_init_func.py
|
| diff --git a/tools/mac/show_mod_init_func.py b/tools/mac/show_mod_init_func.py
|
| index ea30025c7502783f1135808b73ab2cd7721b3594..c41a21029cdb741b37cbd1c44a581fa00cacea1f 100755
|
| --- a/tools/mac/show_mod_init_func.py
|
| +++ b/tools/mac/show_mod_init_func.py
|
| @@ -54,7 +54,7 @@ def GetModuleInitializers(binary):
|
| def SymbolizeAddresses(binary, addresses):
|
| """Given a |binary| and a list of |addresses|, symbolizes them using atos.
|
| """
|
| - atos = ['atos', '-o', binary] + addresses
|
| + atos = ['xcrun', 'atos', '-o', binary] + addresses
|
| lines = subprocess.check_output(atos).strip().split('\n')
|
| return lines
|
|
|
|
|