Displaying 3 results from an estimated 3 matches for "zygoteconnect".
2013 Jun 21
1
[LLVMdev] ASan for Android Applications
...144): Error reading pid from wrapped process, child may have died
W/Zygote ( 144): java.io.EOFException
W/Zygote ( 144): at libcore.io.Streams.readFully(Streams.java:83)
W/Zygote ( 144): at java.io.DataInputStream.readInt(DataInputStream.java:124)
W/Zygote ( 144): at
com.android.internal.os.ZygoteConnection.handleParentProc(ZygoteConnection.java:908)
W/Zygote ( 144): at
com.android.internal.os.ZygoteConnection.runOnce(ZygoteConnection.java:258)
W/Zygote ( 144): at
com.android.internal.os.ZygoteInit.runSelectLoopMode(ZygoteInit.java:654)
W/Zygote ( 144): at
com.android.internal.os.ZygoteInit.m...
2013 Jun 21
0
[LLVMdev] ASan for Android Applications
You are citing the "Android platform workflow" section, which is about
sanitizing components of the Android system itself.
For NDK apps, see "Android NDK workflow" in the same document.
You need -eng build because preloading libraries into dalvik vm is not
allowed in user builds. JellyBean includes several bugfixes in the
dynamic loader that asan needs.
Was there any useful
2013 Jun 21
3
[LLVMdev] ASan for Android Applications
From:
http://address-sanitizer.googlecode.com/svn-history/r1624/wiki/Android.wiki
> AddressSanitizer is fully supported in AOSP starting with JellyBean release. To run
> applications built with ASan you'll need an -eng build of Android.
>
> To build any part of Android system with ASan, add
> LOCAL_ADDRESS_SANITIZER:=true to the appropriate Android.mk.
I don't see that