Revision: 19514
Author:   [email protected]
Date:     Thu Feb 20 16:37:40 2014 UTC
Log:      Fix tools/cross_build_gcc.sh.

The cross_build_gcc.sh script didn't set LINK, so cross builds would
fail at the last step.

BUG=
[email protected]

Review URL: https://codereview.chromium.org/170843011
http://code.google.com/p/v8/source/detail?r=19514

Modified:
 /branches/bleeding_edge/tools/cross_build_gcc.sh

=======================================
--- /branches/bleeding_edge/tools/cross_build_gcc.sh Wed Feb 12 09:19:30 2014 UTC +++ /branches/bleeding_edge/tools/cross_build_gcc.sh Thu Feb 20 16:37:40 2014 UTC
@@ -37,6 +37,7 @@
 export RANLIB=$1ranlib
 export CC=$1gcc
 export LD=$1g++
+export LINK=$1g++

 OK=1
 if [ ! -x "$CXX" ]; then
@@ -59,6 +60,10 @@
   echo "Error: $LD does not exist or is not executable."
   OK=0
 fi
+if [ ! -x "$LINK" ]; then
+  echo "Error: $LINK does not exist or is not executable."
+  OK=0
+fi
 if [ $OK -ne 1 ]; then
   exit 1
 fi

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to