1#!/system/bin/sh
2# Copyright (c) 2012 The Chromium Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6ASAN_OPTIONS=debug=1,verbosity=1,strict_memcmp=0 \
7LD_LIBRARY_PATH=/data/local/tmp/asan:$LD_LIBRARY_PATH \
8LD_PRELOAD=libclang_rt.asan-arm-android.so \
9exec $@
10