]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
config.gcc (arm-*-freebsd*): Add target.
authorDavid O'Brien <obrien@FreeBSD.org>
Thu, 13 Dec 2001 00:27:30 +0000 (00:27 +0000)
committerDavid O'Brien <obrien@gcc.gnu.org>
Thu, 13 Dec 2001 00:27:30 +0000 (00:27 +0000)
2001-12-12  David O'Brien  <obrien@FreeBSD.org>
* config.gcc (arm-*-freebsd*): Add target.
* config/arm/freebsd.h: New file.
* config/arm/arm.h (CPP_PREDEFINES): Do not define.
(CPP_SPEC): #undef before defining.
(CPP_CPU_ARCH_SPEC): Add -Acpu=arm -Amachine=arm.
* config/arm/conix-elf.h (CPP_PREDEFINES): Remove -Acpu=arm
-Amachine=arm.
* config/arm/linux-elf.h: Likewise.
* config/arm/netbsd.h: Likewise.
* config/arm/riscix.h: Likewise.
* config/arm/riscix1-1.h: Likewise.
* config/arm/semiaof.h: Likewise.

Approved by:  Richard Earnshaw <rearnsha@arm.com> (in private email)
              Message-Id: <200112121046.KAA09097@cam-mail2.cambridge.arm.com>

From-SVN: r47957

gcc/ChangeLog
gcc/config.gcc
gcc/config/arm/arm.h
gcc/config/arm/conix-elf.h
gcc/config/arm/freebsd.h [new file with mode: 0644]
gcc/config/arm/linux-elf.h
gcc/config/arm/netbsd.h
gcc/config/arm/riscix.h
gcc/config/arm/riscix1-1.h
gcc/config/arm/semiaof.h

index 0a5f9e29abab839b428942b9b9f9703274d33573..a718917e3b1751670da5527ae7afc058e9601211 100644 (file)
@@ -1,3 +1,18 @@
+2001-12-12  David O'Brien  <obrien@FreeBSD.org>
+
+       * config.gcc (arm-*-freebsd*): Add target.
+       * config/arm/freebsd.h: New file.
+       * config/arm/arm.h (CPP_PREDEFINES): Do not define.
+       (CPP_SPEC): #undef before defining.
+       (CPP_CPU_ARCH_SPEC): Add -Acpu=arm -Amachine=arm.
+       * config/arm/conix-elf.h (CPP_PREDEFINES): Remove -Acpu=arm
+       -Amachine=arm.
+       * config/arm/linux-elf.h: Likewise.
+       * config/arm/netbsd.h: Likewise.
+       * config/arm/riscix.h: Likewise.
+       * config/arm/riscix1-1.h: Likewise.
+       * config/arm/semiaof.h: Likewise.
+
 2001-12-12  Richard Henderson  <rth@redhat.com>
 
        * regrename.c (copyprop_hardreg_forward): New optimization.
index 5144c162e25da992ad9243386e6c5cb221a74829..0522dde8bcf5cc9f938ef1896122ea00d568dc73 100644 (file)
@@ -578,6 +578,10 @@ arm-semi-aof | armel-semi-aof)
        tm_file="arm/semiaof.h arm/aof.h arm/arm.h"
        tmake_file=arm/t-semi
        ;;
+arm*-*-freebsd*|strongarm*-*-freebsd*)
+       tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
+       tmake_file="${tmake_file} arm/t-strongarm-elf"
+       ;;
 arm*-*-netbsd*)
        tm_file="arm/aout.h arm/arm.h netbsd.h arm/netbsd.h"
        tmake_file="t-netbsd arm/t-netbsd"
index b27192e9d217f1623aab22d47eedaf5305e86d2e..eefa198150dabf69483a7c127e08c0ade81a4a15 100644 (file)
@@ -127,10 +127,7 @@ Unrecognized value in TARGET_CPU_DEFAULT.
 #endif
 #endif
 
-#ifndef CPP_PREDEFINES
-#define CPP_PREDEFINES  "-Acpu=arm -Amachine=arm"
-#endif
-
+#undef  CPP_SPEC
 #define CPP_SPEC "\
 %(cpp_cpu_arch) %(cpp_apcs_pc) %(cpp_float) \
 %(cpp_endian) %(subtarget_cpp_spec) %(cpp_isa) %(cpp_interwork)"
@@ -140,6 +137,7 @@ Unrecognized value in TARGET_CPU_DEFAULT.
 /* Set the architecture define -- if -march= is set, then it overrides
    the -mcpu= setting.  */
 #define CPP_CPU_ARCH_SPEC "\
+-Acpu=arm -Amachine=arm \
 %{march=arm2:-D__ARM_ARCH_2__} \
 %{march=arm250:-D__ARM_ARCH_2__} \
 %{march=arm3:-D__ARM_ARCH_2__} \
index 6cde16f574af774bcc816c6d7c0356dee464c23e..b74afdfc006dda6681b42eeeacddbbf4196b0275 100644 (file)
@@ -41,4 +41,4 @@ the Free Software Foundation, 59 Temple Place - Suite 330,
      
 #undef  CPP_PREDEFINES
 #define CPP_PREDEFINES \
-  "-D__arm__ -D__CONIX__ -Acpu=arm -Amachine=arm -D__ELF__"
+  "-D__arm__ -D__CONIX__ -D__ELF__"
diff --git a/gcc/config/arm/freebsd.h b/gcc/config/arm/freebsd.h
new file mode 100644 (file)
index 0000000..a9b268c
--- /dev/null
@@ -0,0 +1,57 @@
+/* Definitions for StrongARM running FreeBSD using the ELF format
+   Copyright (C) 2001 Free Software Foundation, Inc.
+   Contributed by David E. O'Brien <obrien@FreeBSD.org> and BSDi.
+
+This file is part of GNU CC.
+
+GNU CC is free software; you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation; either version 2, or (at your option)
+any later version.
+
+GNU CC is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with GNU CC; see the file COPYING.  If not, write to
+the Free Software Foundation, 59 Temple Place - Suite 330,
+Boston, MA 02111-1307, USA.  */
+
+
+#undef  SUBTARGET_CPP_SPEC
+#define SUBTARGET_CPP_SPEC FBSD_CPP_SPEC
+
+
+/************************[  Target stuff  ]***********************************/
+
+/* Define the actual types of some ANSI-mandated types.  
+   Needs to agree with <machine/ansi.h>.  GCC defaults come from c-decl.c,
+   c-common.c, and config/<arch>/<arch>.h.  */
+
+/* arm.h gets this wrong for FreeBSD.  We use the GCC defaults instead.  */
+
+#undef  SIZE_TYPE
+#define SIZE_TYPE      "unsigned int"
+
+#undef  PTRDIFF_TYPE
+#define PTRDIFF_TYPE   "int"
+
+/* We use the GCC defaults here.  */
+#undef WCHAR_TYPE
+
+#undef  WCHAR_UNSIGNED
+#define WCHAR_UNSIGNED 0
+
+#undef  WCHAR_TYPE_SIZE
+#define WCHAR_TYPE_SIZE 32
+
+#undef  SUBTARGET_CPU_DEFAULT
+#define SUBTARGET_CPU_DEFAULT  TARGET_CPU_strongarm
+
+#undef  ARM_OS_NAME
+#define ARM_OS_NAME "FreeBSD"
+
+#undef  TARGET_VERSION
+#define TARGET_VERSION fprintf (stderr, " (FreeBSD/StrongARM ELF)");
index f6b91973c4b2941071e7d0eae5a39606b8009b8a..74f7e7ef99998259f3ed211cf1b317aca57436ed 100644 (file)
@@ -88,7 +88,7 @@ Boston, MA 02111-1307, USA.  */
 #undef  CPP_PREDEFINES
 #define CPP_PREDEFINES \
 "-Dunix -Dlinux -D__ELF__ \
--Asystem=unix -Asystem=posix -Acpu=arm -Amachine=arm"
+-Asystem=unix -Asystem=posix"
 
 /* Allow #sccs in preprocessor.  */
 #define SCCS_DIRECTIVE
index 554460d918ccca6af151f9b92be14fdb300a9eae..9684fdbada3511b971c62af5e5e033ea65a78199 100644 (file)
@@ -47,7 +47,7 @@ Boston, MA 02111-1307, USA.  */
 #undef CPP_PREDEFINES
 #define CPP_PREDEFINES "\
 -Dunix -Driscbsd -Darm32 -D__arm32__ -D__arm__ -D__NetBSD__ \
--Asystem=unix -Asystem=NetBSD -Acpu=arm -Amachine=arm"
+-Asystem=unix -Asystem=NetBSD"
 
 /* Define _POSIX_SOURCE if necessary.  */
 #undef CPP_SPEC
index faa99ba9787e5ff98e7766fb1942628358f37cc9..35fc23258d2e33be270ba2aadf9c8d8b8d9a2c93 100644 (file)
@@ -49,7 +49,7 @@ Boston, MA 02111-1307, USA.  */
 
 #ifndef CPP_PREDEFINES
 #define CPP_PREDEFINES  \
-    "-Darm -Driscix -Dunix -Asystem=unix -Acpu=arm -Amachine=arm"
+    "-Darm -Driscix -Dunix -Asystem=unix"
 #endif
 
 
index ccaf964cb67f722c3c074eb7a85c88fcf288e60a..fd93d40f05ea82a4ec74b57e6cbeacee94c58ade 100644 (file)
@@ -30,7 +30,7 @@ Boston, MA 02111-1307, USA.  */
   "%{pg:/usr/lib/gcrt0.o%s}%{!pg:%{p:mcrt0.o%s}%{!p:crt0.o%s}}"
 
 #ifndef CPP_PREDEFINES
-#define CPP_PREDEFINES  "-Darm -Driscix -Dunix -Asystem=unix -Acpu=arm -Amachine=arm"
+#define CPP_PREDEFINES  "-Darm -Driscix -Dunix -Asystem=unix"
 #endif
 
 /* Riscix 1.1 doesn't have X/OPEN support, so only accept -mbsd (but ignore
index 242c35a291599231133709977aca746ef559e8ad..7ca68bc95c25bceb3a6110db915577a6c294ad2a 100644 (file)
@@ -21,7 +21,7 @@ the Free Software Foundation, 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.  */
 
 #define CPP_PREDEFINES \
-    "-Darm -Dsemi -Acpu=arm -Amachine=arm"
+    "-Darm -Dsemi"
 
 #define ASM_SPEC "%{g -g} -arch 4 \
 -apcs 3%{mapcs-32:/32bit}%{mapcs-26:/26bit}%{!mapcs-26:%{!macps-32:/32bit}}"