svn commit: r272564 - head/contrib/binutils/bfd

Andrew Turner andrew at FreeBSD.org
Sun Oct 5 11:06:23 UTC 2014


Author: andrew
Date: Sun Oct  5 11:06:22 2014
New Revision: 272564
URL: https://svnweb.freebsd.org/changeset/base/272564

Log:
  Merge the big-endian ARM targets together, and the little-endian ARM
  targets. With this we assume any ARM target containing eb is big-endian,
  otherwise it is little-endian.

Modified:
  head/contrib/binutils/bfd/config.bfd

Modified: head/contrib/binutils/bfd/config.bfd
==============================================================================
--- head/contrib/binutils/bfd/config.bfd	Sun Oct  5 10:20:47 2014	(r272563)
+++ head/contrib/binutils/bfd/config.bfd	Sun Oct  5 11:06:22 2014	(r272564)
@@ -273,19 +273,11 @@ case "${targ}" in
     targ_defvec=bfd_elf32_littlearm_vec
     targ_selvecs=bfd_elf32_bigarm_vec
     ;;
-  armeb-*-freebsd*)
+  arm*eb*-*-freebsd*)
     targ_defvec=bfd_elf32_bigarm_vec
     targ_selvecs=bfd_elf32_littlearm_vec
     ;;
-  armv6eb-*-freebsd*)
-    targ_defvec=bfd_elf32_bigarm_vec
-    targ_selvecs=bfd_elf32_littlearm_vec
-    ;;
-  armv6-*-freebsd* | armv6hf-*-freebsd*)
-    targ_defvec=bfd_elf32_littlearm_vec
-    targ_selvecs=bfd_elf32_bigarm_vec
-    ;;
-  arm-*-elf | arm-*-freebsd* | arm*-*-linux-* | arm*-*-conix* | \
+  arm-*-elf | arm*-*-freebsd* | arm*-*-linux-* | arm*-*-conix* | \
   arm*-*-uclinux* | arm-*-kfreebsd*-gnu | \
   arm*-*-eabi* )
     targ_defvec=bfd_elf32_littlearm_vec


More information about the svn-src-all mailing list