[Midnightbsd-cvs] src [10949] trunk/gnu/usr.bin/binutils/as: add architectures

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Fri Jun 15 12:07:56 EDT 2018


Revision: 10949
          http://svnweb.midnightbsd.org/src/?rev=10949
Author:   laffer1
Date:     2018-06-15 12:07:56 -0400 (Fri, 15 Jun 2018)
Log Message:
-----------
add architectures

Added Paths:
-----------
    trunk/gnu/usr.bin/binutils/as/alpha-freebsd/
    trunk/gnu/usr.bin/binutils/as/alpha-freebsd/targ-cpu.h
    trunk/gnu/usr.bin/binutils/as/arm-freebsd/
    trunk/gnu/usr.bin/binutils/as/arm-freebsd/targ-cpu.h
    trunk/gnu/usr.bin/binutils/as/ia64-freebsd/
    trunk/gnu/usr.bin/binutils/as/ia64-freebsd/targ-cpu.h
    trunk/gnu/usr.bin/binutils/as/mips-freebsd/
    trunk/gnu/usr.bin/binutils/as/mips-freebsd/itbl-cpu.h
    trunk/gnu/usr.bin/binutils/as/mips-freebsd/targ-cpu.h
    trunk/gnu/usr.bin/binutils/as/powerpc-freebsd/
    trunk/gnu/usr.bin/binutils/as/powerpc-freebsd/itbl-cpu.h
    trunk/gnu/usr.bin/binutils/as/powerpc-freebsd/targ-cpu.h

Added: trunk/gnu/usr.bin/binutils/as/alpha-freebsd/targ-cpu.h
===================================================================
--- trunk/gnu/usr.bin/binutils/as/alpha-freebsd/targ-cpu.h	                        (rev 0)
+++ trunk/gnu/usr.bin/binutils/as/alpha-freebsd/targ-cpu.h	2018-06-15 16:07:56 UTC (rev 10949)
@@ -0,0 +1,2 @@
+/* $MidnightBSD$ */
+#include "tc-alpha.h"


Property changes on: trunk/gnu/usr.bin/binutils/as/alpha-freebsd/targ-cpu.h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/gnu/usr.bin/binutils/as/arm-freebsd/targ-cpu.h
===================================================================
--- trunk/gnu/usr.bin/binutils/as/arm-freebsd/targ-cpu.h	                        (rev 0)
+++ trunk/gnu/usr.bin/binutils/as/arm-freebsd/targ-cpu.h	2018-06-15 16:07:56 UTC (rev 10949)
@@ -0,0 +1,4 @@
+/* $MidnightBSD$ */
+/* $FreeBSD: stable/10/gnu/usr.bin/binutils/as/arm-freebsd/targ-cpu.h 162297 2006-09-14 06:39:07Z imp $ */
+
+#include "tc-arm.h"


Property changes on: trunk/gnu/usr.bin/binutils/as/arm-freebsd/targ-cpu.h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/gnu/usr.bin/binutils/as/ia64-freebsd/targ-cpu.h
===================================================================
--- trunk/gnu/usr.bin/binutils/as/ia64-freebsd/targ-cpu.h	                        (rev 0)
+++ trunk/gnu/usr.bin/binutils/as/ia64-freebsd/targ-cpu.h	2018-06-15 16:07:56 UTC (rev 10949)
@@ -0,0 +1,4 @@
+/* $MidnightBSD$ */
+/* $FreeBSD: stable/10/gnu/usr.bin/binutils/as/ia64-freebsd/targ-cpu.h 84954 2001-10-15 02:13:26Z obrien $ */
+
+#include "tc-ia64.h"


Property changes on: trunk/gnu/usr.bin/binutils/as/ia64-freebsd/targ-cpu.h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/gnu/usr.bin/binutils/as/mips-freebsd/itbl-cpu.h
===================================================================
--- trunk/gnu/usr.bin/binutils/as/mips-freebsd/itbl-cpu.h	                        (rev 0)
+++ trunk/gnu/usr.bin/binutils/as/mips-freebsd/itbl-cpu.h	2018-06-15 16:07:56 UTC (rev 10949)
@@ -0,0 +1,23 @@
+/* $MidnightBSD$ */
+/* $FreeBSD: stable/10/gnu/usr.bin/binutils/as/mips-freebsd/itbl-cpu.h 233388 2012-03-23 19:37:45Z gonzo $ */
+
+#include "itbl-mips.h"
+
+/* Choose a default ABI for MIPS targets.  */
+#ifndef	MIPS_DEFAULT_ABI
+#define MIPS_DEFAULT_ABI NO_ABI
+#endif
+
+/* Default CPU for MIPS targets.  */
+#define MIPS_CPU_STRING_DEFAULT "from-abi"
+
+/* Generate 64-bit code by default on MIPS targets.  */
+#ifndef	MIPS_DEFAULT_64BIT
+#define MIPS_DEFAULT_64BIT 0
+#endif
+
+/* Allow use of E_MIPS_ABI_O32 on MIPS targets.  */
+#define USE_E_MIPS_ABI_O32 1
+
+/* Use traditional mips */
+#define TE_TMIPS 1


Property changes on: trunk/gnu/usr.bin/binutils/as/mips-freebsd/itbl-cpu.h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/gnu/usr.bin/binutils/as/mips-freebsd/targ-cpu.h
===================================================================
--- trunk/gnu/usr.bin/binutils/as/mips-freebsd/targ-cpu.h	                        (rev 0)
+++ trunk/gnu/usr.bin/binutils/as/mips-freebsd/targ-cpu.h	2018-06-15 16:07:56 UTC (rev 10949)
@@ -0,0 +1,5 @@
+/* $MidnightBSD$ */
+/* $FreeBSD: stable/10/gnu/usr.bin/binutils/as/mips-freebsd/targ-cpu.h 185922 2008-12-11 08:15:14Z imp $ */
+#define TE_TMIPS 1
+
+#include "tc-mips.h"


Property changes on: trunk/gnu/usr.bin/binutils/as/mips-freebsd/targ-cpu.h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/gnu/usr.bin/binutils/as/powerpc-freebsd/itbl-cpu.h
===================================================================
--- trunk/gnu/usr.bin/binutils/as/powerpc-freebsd/itbl-cpu.h	                        (rev 0)
+++ trunk/gnu/usr.bin/binutils/as/powerpc-freebsd/itbl-cpu.h	2018-06-15 16:07:56 UTC (rev 10949)
@@ -0,0 +1,7 @@
+/* $MidnightBSD$ */
+/* $FreeBSD: stable/10/gnu/usr.bin/binutils/as/powerpc-freebsd/itbl-cpu.h 96834 2002-05-18 04:50:32Z obrien $ */
+
+/* Values for processors will be from 0 to NUMBER_OF_PROCESSORS-1 */
+#define NUMBER_OF_PROCESSORS 1
+
+#include "itbl-ppc.h"


Property changes on: trunk/gnu/usr.bin/binutils/as/powerpc-freebsd/itbl-cpu.h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property
Added: trunk/gnu/usr.bin/binutils/as/powerpc-freebsd/targ-cpu.h
===================================================================
--- trunk/gnu/usr.bin/binutils/as/powerpc-freebsd/targ-cpu.h	                        (rev 0)
+++ trunk/gnu/usr.bin/binutils/as/powerpc-freebsd/targ-cpu.h	2018-06-15 16:07:56 UTC (rev 10949)
@@ -0,0 +1,4 @@
+/* $MidnightBSD$ */
+/* $FreeBSD: stable/10/gnu/usr.bin/binutils/as/powerpc-freebsd/targ-cpu.h 96834 2002-05-18 04:50:32Z obrien $ */
+
+#include "tc-ppc.h"


Property changes on: trunk/gnu/usr.bin/binutils/as/powerpc-freebsd/targ-cpu.h
___________________________________________________________________
Added: svn:eol-style
## -0,0 +1 ##
+native
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+text/plain
\ No newline at end of property


More information about the Midnightbsd-cvs mailing list