On Sat, Mar 15, 2014 at 10:50 AM, Alexander Potapenko
<
ramosia...@gmail.com> wrote:
> Which Python version are you using?
$ python --version
Python 3.3.5
$ which python
/usr/local/bin/python
It was built from sources because I needed SSL's server name
indication (SNI) of Python 3.x. The version installed in
/usr/local/bin was a standard build, and lacks any instrumentation
like Asan and UBsan.
> What happens if you invoke the script as 'python asan_symbolize.py'?
Here are the two results:
$ /usr/local/bin/python /usr/local/bin/asan_symbolize.py
File "/usr/local/bin/asan_symbolize.py", line 69
print ' '.join(cmd)
^
SyntaxError: invalid syntax
$ /usr/bin/python /usr/local/bin/asan_symbolize.py
^C
So it looks like something is broken with my build of 3.3.
> You'll also need to redirect stderr into stdout (2>&1), because ASan prints
> the reports into stderr.
Ah, right... I forgot about that. Thanks.
Thanks for the help. (Would you know what I should do next, before I
head over to the Stack Overflow).
Jeff