diff options
author | John David Anglin <danglin@gcc.gnu.org> | 2018-12-29 17:02:51 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2018-12-29 17:02:51 +0000 |
commit | 40b1bb9f3babc5bda92849a63cd114b1fe9737d6 (patch) | |
tree | 1eab483f12fc5de46b15fe804e714c49f6adfb38 /gcc | |
parent | db304b55fb372f0bb8f322549cd2543ecdc0d717 (diff) | |
download | gcc-40b1bb9f3babc5bda92849a63cd114b1fe9737d6.zip gcc-40b1bb9f3babc5bda92849a63cd114b1fe9737d6.tar.gz gcc-40b1bb9f3babc5bda92849a63cd114b1fe9737d6.tar.bz2 |
config.gcc (hppa*64*-*-linux*): Add pa/t-pa to tmake_file.
* config.gcc (hppa*64*-*-linux*): Add pa/t-pa to tmake_file. Define
d_target_objs.
(hppa*-*-openbsd*): Likewise.
(hppa[12]*-*-hpux10*): Likewise.
(hppa*64*-*-hpux11*): Likewise.
(hppa[12]*-*-hpux11*): Likewise.
From-SVN: r267463
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/config.gcc | 13 |
2 files changed, 19 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fd2c230..3ce73b4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,12 @@ +2018-12-29 John David Anglin <danglin@gcc.gnu.org> + + * config.gcc (hppa*64*-*-linux*): Add pa/t-pa to tmake_file. Define + d_target_objs. + (hppa*-*-openbsd*): Likewise. + (hppa[12]*-*-hpux10*): Likewise. + (hppa*64*-*-hpux11*): Likewise. + (hppa[12]*-*-hpux11*): Likewise. + 2018-12-29 Jakub Jelinek <jakub@redhat.com> PR ipa/88586 diff --git a/gcc/config.gcc b/gcc/config.gcc index bd75e06..6122aa7 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1436,6 +1436,8 @@ hppa*64*-*-linux*) tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h gnu-user.h linux.h \ glibc-stdint.h pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h \ pa/pa64-linux.h" + tmake_file="${tmake_file} pa/t-pa pa/t-linux" + d_target_objs="${d_target_objs} pa-d.o" gas=yes gnu_ld=yes ;; hppa*-*-linux*) @@ -1450,6 +1452,8 @@ hppa*-*-openbsd*) tm_file="${tm_file} dbxelf.h elfos.h openbsd.h openbsd-stdint.h openbsd-libpthread.h \ pa/pa-openbsd.h pa/pa32-regs.h pa/pa32-openbsd.h" extra_options="${extra_options} openbsd.opt" + tmake_file="pa/t-pa" + d_target_objs="${d_target_objs} pa-d.o" gas=yes gnu_ld=yes ;; @@ -1470,7 +1474,8 @@ hppa[12]*-*-hpux10*) esac use_gcc_stdint=provide tm_file="${tm_file} hpux-stdint.h" - tmake_file="t-slibgcc" + tmake_file="pa/t-pa t-slibgcc" + d_target_objs="${d_target_objs} pa-d.o" case ${enable_threads} in "") if test x$have_pthread_h = xyes ; then @@ -1512,7 +1517,8 @@ hppa*64*-*-hpux11*) esac extra_options="${extra_options} pa/pa-hpux.opt \ pa/pa-hpux1010.opt pa/pa64-hpux.opt hpux11.opt" - tmake_file="t-slibgcc" + tmake_file="pa/t-pa t-slibgcc" + d_target_objs="${d_target_objs} pa-d.o" case x${enable_threads} in x | xyes | xposix ) thread_file=posix @@ -1550,7 +1556,8 @@ hppa[12]*-*-hpux11*) extra_options="${extra_options} pa/pa-hpux1131.opt" ;; esac - tmake_file="t-slibgcc" + tmake_file="pa/t-pa t-slibgcc" + d_target_objs="${d_target_objs} pa-d.o" case x${enable_threads} in x | xyes | xposix ) thread_file=posix |