diff options
author | David O'Brien <obrien@FreeBSD.org> | 2001-12-13 00:27:30 +0000 |
---|---|---|
committer | David O'Brien <obrien@gcc.gnu.org> | 2001-12-13 00:27:30 +0000 |
commit | 5742588d23cb1e1409c780e71e2b4b2ac8093190 (patch) | |
tree | 8f6b73cb9650c96c7ce282f9d9a33c9fd64b9243 /gcc | |
parent | e5bd5cb4708e1ef9ddfae138636c309be3e2d929 (diff) | |
download | gcc-5742588d23cb1e1409c780e71e2b4b2ac8093190.zip gcc-5742588d23cb1e1409c780e71e2b4b2ac8093190.tar.gz gcc-5742588d23cb1e1409c780e71e2b4b2ac8093190.tar.bz2 |
config.gcc (arm-*-freebsd*): Add target.
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 15 | ||||
-rw-r--r-- | gcc/config.gcc | 4 | ||||
-rw-r--r-- | gcc/config/arm/arm.h | 6 | ||||
-rw-r--r-- | gcc/config/arm/conix-elf.h | 2 | ||||
-rw-r--r-- | gcc/config/arm/freebsd.h | 57 | ||||
-rw-r--r-- | gcc/config/arm/linux-elf.h | 2 | ||||
-rw-r--r-- | gcc/config/arm/netbsd.h | 2 | ||||
-rw-r--r-- | gcc/config/arm/riscix.h | 2 | ||||
-rw-r--r-- | gcc/config/arm/riscix1-1.h | 2 | ||||
-rw-r--r-- | gcc/config/arm/semiaof.h | 2 |
10 files changed, 84 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0a5f9e2..a718917 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/config.gcc b/gcc/config.gcc index 5144c16..0522dde 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -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" diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index b27192e..eefa198 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -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__} \ diff --git a/gcc/config/arm/conix-elf.h b/gcc/config/arm/conix-elf.h index 6cde16f..b74afdf 100644 --- a/gcc/config/arm/conix-elf.h +++ b/gcc/config/arm/conix-elf.h @@ -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 index 0000000..a9b268c --- /dev/null +++ b/gcc/config/arm/freebsd.h @@ -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)"); diff --git a/gcc/config/arm/linux-elf.h b/gcc/config/arm/linux-elf.h index f6b9197..74f7e7e 100644 --- a/gcc/config/arm/linux-elf.h +++ b/gcc/config/arm/linux-elf.h @@ -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 diff --git a/gcc/config/arm/netbsd.h b/gcc/config/arm/netbsd.h index 554460d..9684fdb 100644 --- a/gcc/config/arm/netbsd.h +++ b/gcc/config/arm/netbsd.h @@ -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 diff --git a/gcc/config/arm/riscix.h b/gcc/config/arm/riscix.h index faa99ba..35fc232 100644 --- a/gcc/config/arm/riscix.h +++ b/gcc/config/arm/riscix.h @@ -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 diff --git a/gcc/config/arm/riscix1-1.h b/gcc/config/arm/riscix1-1.h index ccaf964..fd93d40 100644 --- a/gcc/config/arm/riscix1-1.h +++ b/gcc/config/arm/riscix1-1.h @@ -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 diff --git a/gcc/config/arm/semiaof.h b/gcc/config/arm/semiaof.h index 242c35a..7ca68bc 100644 --- a/gcc/config/arm/semiaof.h +++ b/gcc/config/arm/semiaof.h @@ -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}}" |