diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config.gcc | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fefb4b6..17f4802 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2007-08-25 Hans Kester <hans.kester@ellips.nl> + + * config.gcc : Add x86_64-elf target. + 2007-08-25 Jakub Jelinek <jakub@redhat.com> * expr.c (store_expr): Fix order of store_by_pieces arguments. diff --git a/gcc/config.gcc b/gcc/config.gcc index 503a60b..273e06f 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1071,6 +1071,11 @@ i[34567]86-*-elf*) tmake_file="i386/t-i386elf t-svr4" use_fixproto=yes ;; +x86_64-*-elf*) + tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/x86-64.h" + tmake_file="i386/t-i386elf t-svr4" + use_fixproto=yes + ;; i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*) if test x$gas = xyes then |