blob: 35a12d5f68d92db271868d979909a26a2f1c8288 [file] [log] [blame]
#!/bin/bash
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Run a 32 bit binary on 64 bit linux, can be run from inside or outside
# the chroot.
. "$(dirname "$0")/../../scripts/common.sh"
get_default_board
# Command line options
DEFINE_string chroot "$DEFAULT_CHROOT_DIR" "Location of chroot"
DEFINE_string board "$DEFAULT_BOARD" "x86 board to use"
# Parse command line and update positional args
FLAGS "$@" || exit 1
eval set -- "${FLAGS_ARGV}"
# Die on any errors
set -e
if [ -z "$SYSROOT" ]; then
if [ $INSIDE_CHROOT == 1 ]; then
SYSROOT=/build/$FLAGS_board
else
SYSROOT=$FLAGS_chroot/build/$FLAGS_board
fi
fi
if [ -z "$CHOST" ]; then
CHOST=i686-pc-linux-gnu
fi
LIB_PATHS="/lib32:/usr/lib32:$LIB_PATHS:$SYSROOT/usr/lib:$SYSROOT/lib:."
LIB_PATHS="$LIB_PATHS:$SYSROOT/opt/google/chrome/chromeos"
export LD_LIBRARY_PATH=$LIB_PATHS
exec "$@"