search for: myinstrumentedprogram

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

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 myInstrumentedProgram /data/data/ adb shell "LD_PRELOAD=/d...
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 output > adb push myInstrumentedProgram /data/data/ &...
2013 Oct 31
1
[LLVMdev] Symbolized ASan output on Android
...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? >> >> # Execute the test and save its output >> adb push myInstr...