Module Name: src
Committed By: christos
Date: Fri Oct 4 18:08:02 UTC 2013
Modified Files:
src/external/gpl3/binutils/dist/bfd: aoutx.h
Log Message:
Allow bfd_mach_arm4 machines to produce a.out binaries.
Perhaps we should just let every arm machine produce them?
Or we should use M_ARM6_NETBSD midmag for those?
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/gpl3/binutils/dist/bfd/aoutx.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/binutils/dist/bfd/aoutx.h
diff -u src/external/gpl3/binutils/dist/bfd/aoutx.h:1.4 src/external/gpl3/binutils/dist/bfd/aoutx.h:1.5
--- src/external/gpl3/binutils/dist/bfd/aoutx.h:1.4 Sun Sep 29 10:03:29 2013
+++ src/external/gpl3/binutils/dist/bfd/aoutx.h Fri Oct 4 14:08:02 2013
@@ -762,7 +762,7 @@ NAME (aout, machine_type) (enum bfd_arch
break;
case bfd_arch_arm:
- if (machine == 0)
+ if (machine == 0 || machine == 5)
arch_flags = M_ARM;
break;