mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 17:40:48 +08:00
config.gcc (*-*-netbsd*): New variable nbsd_tm_file containing netbsd.h, netbsd-stdint.h, and netbsd-elf.h.
2017-09-30 Krister Walfridsson <krister.walfridsson@gmail.com> Maya Rashish <coypu@sdf.org> * config.gcc (*-*-netbsd*): New variable nbsd_tm_file containing netbsd.h, netbsd-stdint.h, and netbsd-elf.h. (alpha*-*-netbsd*) Use nbsd_tm_file. (arm*-*-netbsdelf*) Likewise. (i[34567]86-*-netbsdelf*) Likewise. (x86_64-*-netbsd*) Likewise. (mips*-*-netbsd*) Likewise. (powerpc-*-netbsd*) Likewise. (sh*-*-netbsd*) Likewise. (sparc-*-netbsdelf*) Likewise. (sparc64-*-netbsd*) Likewise. (m68k*-*-netbsdelf*) Use nbsd_tm_file and add CHAR_FAST8/SHORT_FAST16 to tm_defines. (vax-*-netbsdelf*) Likewise. * config/netbsd-stdint.h (INT_FAST8_TYPE): Check CHAR_FAST8. (UINT_FAST8_TYPE) Likewise. (INT_FAST16_TYPE) Check CHAR_FAST16. (UINT_FAST16_TYPE) Likewise. Co-Authored-By: Maya Rashish <coypu@sdf.org> From-SVN: r253323
This commit is contained in:
parent
ae3f9c32ae
commit
dfe2677b27
@ -1,3 +1,25 @@
|
||||
2017-09-30 Krister Walfridsson <krister.walfridsson@gmail.com>
|
||||
Maya Rashish <coypu@sdf.org>
|
||||
|
||||
* config.gcc (*-*-netbsd*): New variable nbsd_tm_file containing
|
||||
netbsd.h, netbsd-stdint.h, and netbsd-elf.h.
|
||||
(alpha*-*-netbsd*) Use nbsd_tm_file.
|
||||
(arm*-*-netbsdelf*) Likewise.
|
||||
(i[34567]86-*-netbsdelf*) Likewise.
|
||||
(x86_64-*-netbsd*) Likewise.
|
||||
(mips*-*-netbsd*) Likewise.
|
||||
(powerpc-*-netbsd*) Likewise.
|
||||
(sh*-*-netbsd*) Likewise.
|
||||
(sparc-*-netbsdelf*) Likewise.
|
||||
(sparc64-*-netbsd*) Likewise.
|
||||
(m68k*-*-netbsdelf*) Use nbsd_tm_file and add CHAR_FAST8/SHORT_FAST16
|
||||
to tm_defines.
|
||||
(vax-*-netbsdelf*) Likewise.
|
||||
* config/netbsd-stdint.h (INT_FAST8_TYPE): Check CHAR_FAST8.
|
||||
(UINT_FAST8_TYPE) Likewise.
|
||||
(INT_FAST16_TYPE) Check CHAR_FAST16.
|
||||
(UINT_FAST16_TYPE) Likewise.
|
||||
|
||||
2017-09-30 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
PR target/82361
|
||||
|
@ -801,6 +801,7 @@ case ${target} in
|
||||
case ${enable_threads} in
|
||||
"" | yes | posix) thread_file='posix' ;;
|
||||
esac
|
||||
nbsd_tm_file="netbsd.h netbsd-stdint.h netbsd-elf.h"
|
||||
default_use_cxa_atexit=yes
|
||||
;;
|
||||
*-*-openbsd*)
|
||||
@ -1004,7 +1005,7 @@ alpha*-*-freebsd*)
|
||||
extra_options="${extra_options} alpha/elf.opt"
|
||||
;;
|
||||
alpha*-*-netbsd*)
|
||||
tm_file="elfos.h ${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
|
||||
tm_file="elfos.h ${tm_file} ${nbsd_tm_file} alpha/elf.h alpha/netbsd.h"
|
||||
tmake_file="${tmake_file} alpha/t-alpha"
|
||||
extra_options="${extra_options} netbsd.opt netbsd-elf.opt \
|
||||
alpha/elf.opt"
|
||||
@ -1104,7 +1105,7 @@ arm*-*-freebsd*) # ARM FreeBSD EABI
|
||||
with_tls=${with_tls:-gnu}
|
||||
;;
|
||||
arm*-*-netbsdelf*)
|
||||
tm_file="dbxelf.h elfos.h netbsd.h netbsd-elf.h arm/elf.h arm/aout.h ${tm_file} arm/netbsd-elf.h"
|
||||
tm_file="dbxelf.h elfos.h ${nbsd_tm_file} arm/elf.h arm/aout.h ${tm_file} arm/netbsd-elf.h"
|
||||
extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
|
||||
tmake_file="${tmake_file} arm/t-arm"
|
||||
target_cpu_cname="arm6"
|
||||
@ -1489,11 +1490,11 @@ x86_64-*-freebsd*)
|
||||
tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/x86-64.h i386/freebsd.h i386/freebsd64.h"
|
||||
;;
|
||||
i[34567]86-*-netbsdelf*)
|
||||
tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-stdint.h netbsd-elf.h i386/netbsd-elf.h"
|
||||
tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${nbsd_tm_file} i386/netbsd-elf.h"
|
||||
extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
|
||||
;;
|
||||
x86_64-*-netbsd*)
|
||||
tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-stdint.h netbsd-elf.h i386/x86-64.h i386/netbsd64.h"
|
||||
tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${nbsd_tm_file} i386/x86-64.h i386/netbsd64.h"
|
||||
extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
|
||||
;;
|
||||
i[34567]86-*-openbsd*)
|
||||
@ -1931,9 +1932,9 @@ m68k-*-elf* | fido-*-elf*)
|
||||
m68k*-*-netbsdelf*)
|
||||
default_m68k_cpu=68020
|
||||
default_cf_cpu=5475
|
||||
tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
|
||||
tm_file="${tm_file} dbxelf.h elfos.h ${nbsd_tm_file} m68k/netbsd-elf.h"
|
||||
extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
|
||||
tm_defines="${tm_defines} MOTOROLA=1"
|
||||
tm_defines="${tm_defines} MOTOROLA=1 CHAR_FAST8=1 SHORT_FAST16=1"
|
||||
;;
|
||||
m68k*-*-openbsd*)
|
||||
default_m68k_cpu=68020
|
||||
@ -2060,7 +2061,7 @@ riscv*-*-elf* | riscv*-*-rtems*)
|
||||
;;
|
||||
mips*-*-netbsd*) # NetBSD/mips, either endian.
|
||||
target_cpu_default="MASK_ABICALLS"
|
||||
tm_file="elfos.h ${tm_file} mips/elf.h netbsd.h netbsd-elf.h mips/netbsd.h"
|
||||
tm_file="elfos.h ${tm_file} mips/elf.h ${nbsd_tm_file} mips/netbsd.h"
|
||||
extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
|
||||
;;
|
||||
mips*-img-linux*)
|
||||
@ -2376,7 +2377,7 @@ powerpc*-*-freebsd*)
|
||||
esac
|
||||
;;
|
||||
powerpc-*-netbsd*)
|
||||
tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
|
||||
tm_file="${tm_file} dbxelf.h elfos.h ${nbsd_tm_file} freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
|
||||
extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
|
||||
tmake_file="${tmake_file} rs6000/t-netbsd"
|
||||
extra_options="${extra_options} rs6000/sysv4.opt"
|
||||
@ -2707,7 +2708,7 @@ sh-*-elf* | sh[12346l]*-*-elf* | \
|
||||
fi
|
||||
tm_file="${tm_file} gnu-user.h linux.h glibc-stdint.h sh/linux.h" ;;
|
||||
sh*-*-netbsd*)
|
||||
tm_file="${tm_file} netbsd.h netbsd-elf.h sh/netbsd-elf.h"
|
||||
tm_file="${tm_file} ${nbsd_tm_file} sh/netbsd-elf.h"
|
||||
extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
|
||||
|
||||
;;
|
||||
@ -2867,7 +2868,7 @@ sparc-*-linux*)
|
||||
fi
|
||||
;;
|
||||
sparc-*-netbsdelf*)
|
||||
tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
|
||||
tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h ${nbsd_tm_file} sparc/netbsd-elf.h"
|
||||
extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
|
||||
extra_options="${extra_options} sparc/long-double-switch.opt"
|
||||
tmake_file="${tmake_file} sparc/t-sparc"
|
||||
@ -2915,7 +2916,7 @@ sparc64-*-freebsd*|ultrasparc-*-freebsd*)
|
||||
;;
|
||||
sparc64-*-netbsd*)
|
||||
tm_file="sparc/biarch64.h ${tm_file}"
|
||||
tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
|
||||
tm_file="${tm_file} dbxelf.h elfos.h sparc/sysv4.h ${nbsd_tm_file} sparc/netbsd-elf.h"
|
||||
extra_options="${extra_options} netbsd.opt netbsd-elf.opt"
|
||||
extra_options="${extra_options} sparc/long-double-switch.opt"
|
||||
tmake_file="${tmake_file} sparc/t-sparc sparc/t-netbsd64"
|
||||
@ -3019,8 +3020,9 @@ vax-*-linux*)
|
||||
extra_options="${extra_options} vax/elf.opt"
|
||||
;;
|
||||
vax-*-netbsdelf*)
|
||||
tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
|
||||
tm_file="${tm_file} elfos.h ${nbsd_tm_file} vax/elf.h vax/netbsd-elf.h"
|
||||
extra_options="${extra_options} netbsd.opt netbsd-elf.opt vax/elf.opt"
|
||||
tm_defines="${tm_defines} CHAR_FAST8=1 SHORT_FAST16=1"
|
||||
;;
|
||||
vax-*-openbsd*)
|
||||
tm_file="vax/vax.h vax/openbsd1.h openbsd.h openbsd-stdint.h openbsd-libpthread.h vax/openbsd.h"
|
||||
|
@ -42,12 +42,28 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
||||
#define UINT_LEAST32_TYPE UINT32_TYPE
|
||||
#define UINT_LEAST64_TYPE UINT64_TYPE
|
||||
|
||||
#ifdef CHAR_FAST8
|
||||
#define INT_FAST8_TYPE (LONG_TYPE_SIZE == 64 ? "int" : "signed char")
|
||||
#else
|
||||
#define INT_FAST8_TYPE INT32_TYPE
|
||||
#endif
|
||||
#ifdef SHORT_FAST16
|
||||
#define INT_FAST16_TYPE (LONG_TYPE_SIZE == 64 ? "int" : "short int")
|
||||
#else
|
||||
#define INT_FAST16_TYPE INT32_TYPE
|
||||
#endif
|
||||
#define INT_FAST32_TYPE INT32_TYPE
|
||||
#define INT_FAST64_TYPE INT64_TYPE
|
||||
#ifdef CHAR_FAST8
|
||||
#define UINT_FAST8_TYPE "unsigned char"
|
||||
#else
|
||||
#define UINT_FAST8_TYPE UINT32_TYPE
|
||||
#endif
|
||||
#ifdef SHORT_FAST16
|
||||
#define UINT_FAST16_TYPE "short unsigned int"
|
||||
#else
|
||||
#define UINT_FAST16_TYPE UINT32_TYPE
|
||||
#endif
|
||||
#define UINT_FAST32_TYPE UINT32_TYPE
|
||||
#define UINT_FAST64_TYPE UINT64_TYPE
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user