Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(449)

Unified Diff: run_32bit.sh

Issue 6287010: crosutils:Remove dead scripts (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/crosutils.git@master
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mk_arm_sd_image.py ('k') | save_pinned_deps » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: run_32bit.sh
diff --git a/run_32bit.sh b/run_32bit.sh
deleted file mode 100755
index 4fcc82b0826d6288782bd396ef1c0fc28584fcb6..0000000000000000000000000000000000000000
--- a/run_32bit.sh
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-
-# Copyright (c) 2009 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")/common.sh"
-
-# Command line options
-DEFINE_string chroot "$DEFAULT_CHROOT_DIR" "Location of chroot"
-
-# 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/x86-generic
- else
- SYSROOT=$FLAGS_chroot/build/x86-generic
- 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 "$@"
« no previous file with comments | « mk_arm_sd_image.py ('k') | save_pinned_deps » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698