search for: llvm_symbolizer_path

Displaying 3 results from an estimated 3 matches for "llvm_symbolizer_path".

2013 Oct 30
2
[LLVMdev] Symbolized ASan output on Android
If running ASan on the host architecture, we can symbolize output with: export LLVM_SYMBOLIZER_PATH=`which llvm-symbolizer` ./myInstrumentedProgram but on Android symbolizing is more complex. The bash script below is a "hello world" for symbolizing ASan output on Android. Is there a simpler way to do this? # Execute the test and save its output adb push myInstrumentedPr...
2013 Oct 31
0
[LLVMdev] Symbolized ASan output on Android
On Wed, Oct 30, 2013 at 2:08 PM, Greg Fitzgerald <garious at gmail.com> wrote: > If running ASan on the host architecture, we can symbolize output with: > > export LLVM_SYMBOLIZER_PATH=`which llvm-symbolizer` > ./myInstrumentedProgram > > but on Android symbolizing is more complex. The bash script below is > a "hello world" for symbolizing ASan output on Android. Is there a > simpler way to do this? > > # Execute the test and save its outp...
2013 Oct 31
1
[LLVMdev] Symbolized ASan output on Android
...n Thu, Oct 31, 2013 at 1:58 PM, Alexey Samsonov <samsonov at google.com> wrote: > > On Wed, Oct 30, 2013 at 2:08 PM, Greg Fitzgerald <garious at gmail.com> wrote: >> >> If running ASan on the host architecture, we can symbolize output with: >> >> export LLVM_SYMBOLIZER_PATH=`which llvm-symbolizer` >> ./myInstrumentedProgram >> >> but on Android symbolizing is more complex. The bash script below is >> a "hello world" for symbolizing ASan output on Android. Is there a >> simpler way to do this? >> >> # Execut...