blob: 24473895f0f763e67f7cf893b7d320f3b9373294 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/system/bin/sh
# These options mirror those in mozglue/build/AsanOptions.cpp
# except for fast_unwind_* which are only needed on Android
options=(
allow_user_segv_handler=1
alloc_dealloc_mismatch=0
detect_leaks=0
fast_unwind_on_check=1
fast_unwind_on_fatal=1
max_free_fill_size=268435456
max_malloc_fill_size=268435456
malloc_fill_byte=228
free_fill_byte=229
handle_sigill=1
allocator_may_return_null=1
)
if [ -e "/data/local/tmp/asan.options.gecko" ]; then
options+=("$(cat /data/local/tmp/asan.options.gecko | tr -d '\n')")
fi
LIB_PATH="$(cd "$(dirname "$0")" && pwd)"
IFS=:
export ASAN_OPTIONS="${options[*]}"
export LD_PRELOAD="$(ls "$LIB_PATH"/libclang_rt.asan-*-android.so)"
exec "$@"
|