svn commit: r203466 - user/imp/tbemd/contrib/binutils/bfd

Warner Losh imp at FreeBSD.org
Thu Feb 4 00:57:28 UTC 2010


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


More information about the svn-src-user mailing list