GNU Tool for ARM Embedded Processors

x86_64 Linuxのhostでsourceからbuildする方法。
以下の変更をする

Index: build-common.sh
===================================================================
--- build-common.sh	(リビジョン 89)
+++ build-common.sh	(リビジョン 90)
@@ -329,9 +329,11 @@
 # on Ubuntu and Mac OS X.
 uname_string=`uname | sed 'y/LINUXDARWIN/linuxdarwin/'`
 if [ "x$uname_string" == "xlinux" ] ; then
-    BUILD=i686-linux-gnu
-    HOST_NATIVE=i686-linux-gnu
-    READLINK=readlink
+    #BUILD=i686-linux-gnu
+    #HOST_NATIVE=i686-linux-gnu
+    BUILD=`uname -p`-linux-gnu
+    HOST_NATIVE=`uname -p`-linux-gnu
+	READLINK=readlink
     JOBS=`grep ^processor /proc/cpuinfo|wc -l`
     GCC_CONFIG_OPTS_LCPP="--with-host-libstdcxx=-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm"
     TAR=tar