Date: Thu, 4 Feb 2010 00:57:28 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r203466 - user/imp/tbemd/contrib/binutils/bfd Message-ID: <201002040057.o140vSL7059827@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Thu Feb 4 00:57:28 2010 New Revision: 203466 URL: http://svn.freebsd.org/changeset/base/203466 Log: Recognize armeb-*-freebsd* too, otherwise we fail when we try to build armeb binaries because we can't look up the right target. Oops. # do we have vendor branch rules still? Modified: user/imp/tbemd/contrib/binutils/bfd/config.bfd Modified: user/imp/tbemd/contrib/binutils/bfd/config.bfd ============================================================================== --- user/imp/tbemd/contrib/binutils/bfd/config.bfd Thu Feb 4 00:53:51 2010 (r203465) +++ user/imp/tbemd/contrib/binutils/bfd/config.bfd Thu Feb 4 00:57:28 2010 (r203466) @@ -221,6 +221,10 @@ case "${targ}" in targ_defvec=bfd_elf32_littlearm_vec targ_selvecs=bfd_elf32_bigarm_vec ;; + armeb-*-freebsd*) + targ_defvec=bfd_elf32_bigarm_vec + targ_selvecs=bfd_elf32_littlearm_vec + ;; arm-*-elf | arm-*-freebsd* | arm*-*-linux-gnu* | arm*-*-conix* | \ arm*-*-uclinux* | arm-*-kfreebsd*-gnu | arm-*-vxworks) targ_defvec=bfd_elf32_littlearm_vec
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201002040057.o140vSL7059827>