2 # Copyright (c) 2012 The Native Client 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.
6 # Usage: nacl_interp_loader.sh PLATFORM NEXE ARGS...
8 # Assumes this file is sitting in the source tree.
9 # This should be changed for some proper SDK installation setup.
10 NACL_SDK_ROOT
=${NACL_SDK_ROOT:-/path/to/naclsdk/pepper_XX}
26 echo >&2 "$0: Do not recognize architecture \"$1\""
33 case "${NACL_SDK_ROOT}" in
34 *pepper_15
* |
*pepper_16
* |
*pepper_17
*)
35 SEL_LDR
="$NACL_SDK_ROOT/toolchain/linux_x86/bin/sel_ldr_${arch}"
36 IRT
="$NACL_SDK_ROOT/toolchain/linux_x86/runtime/irt_core_${arch}.nexe"
37 RTLD
="$NACL_SDK_ROOT/toolchain/linux_x86/x86_64-nacl/${libdir}/runnable-ld.so"
38 LIBDIR
="$NACL_SDK_ROOT/toolchain/linux_x86/x86_64-nacl/${libdir}"
41 SEL_LDR
="$NACL_SDK_ROOT/tools/sel_ldr_${arch}"
42 IRT
="$NACL_SDK_ROOT/tools/irt_core_${arch}.nexe"
43 RTLD
="$NACL_SDK_ROOT/toolchain/linux_x86_glibc/x86_64-nacl/${libdir}/runnable-ld.so"
44 LIBDIR
="$NACL_SDK_ROOT/toolchain/linux_x86_glibc/x86_64-nacl/${libdir}"
48 IGNORE_VALIDATOR_ARG
=""
49 if [ x
"$NACL_IGNORE_VALIDATOR" == x
"1" ]; then
50 IGNORE_VALIDATOR_ARG
="-c"
53 exec "$SEL_LDR" -E "NACL_PWD=`pwd`" -E "MONO_PATH=$MONO_PATH" \
54 -E "MONO_CFG_DIR=$MONO_CFG_DIR" -E "MONO_SHARED_DIR=$MONO_SHARED_DIR" \
55 -a $IGNORE_VALIDATOR_ARG -S -B "$IRT" -l /dev
/null
-- "$RTLD" \
56 --library-path $LIBDIR "$@"