blob: cb6f63af9a467e64a4a4722d8797c9982e47a934 [file] [log] [blame]
#!/bin/sh
if base=$(readlink "$0" 2>/dev/null); then
case $base in
/*) base=$(readlink -f "$0" 2>/dev/null);; # if $0 is abspath symlink, make symlink fully resolved.
*) base=$(dirname "$0")/"${base}";;
esac
else
case $0 in
/*) base=$0;;
*) base=${PWD:-`pwd`}/$0;;
esac
fi
basedir=${base%/*}
LD_ARGV0_REL="../usr/libexec/gcc/x86_64-cros-linux-gnu/10.2.0/cc1plus" exec "${basedir}/../../../../../lib/ld-linux-x86-64.so.2" --argv0 "$0" --library-path "${basedir}/../../../../../lib" --inhibit-rpath '' "${base}.elf" "$@"