diff options
author | Hans Kester <hans.kester@ellips.nl> | 2007-08-25 12:08:46 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2007-08-25 12:08:46 +0200 |
commit | a10dc28976522fabc4a04dc52a0289795bcea2c2 (patch) | |
tree | 06075083ce25b2f698670a18ad9d07b17441bd86 /gcc | |
parent | e2c3721c55d9c73c13a149b649522a2ab26a300d (diff) | |
download | gcc-a10dc28976522fabc4a04dc52a0289795bcea2c2.zip gcc-a10dc28976522fabc4a04dc52a0289795bcea2c2.tar.gz gcc-a10dc28976522fabc4a04dc52a0289795bcea2c2.tar.bz2 |
config.gcc: Add x86_64-elf target.
* config.gcc : Add x86_64-elf target.
From-SVN: r127798
Diffstat (limited to 'gcc')
-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 |