diff options
author | Andreas Jaeger <aj@suse.de> | 2001-10-19 08:34:23 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2001-10-19 08:34:23 +0200 |
commit | aa3340ba2aa8098f183c2b30f07c05023c0e657c (patch) | |
tree | 730274401215e21f7e4f5ad8c693611da678ad43 | |
parent | 82e014c98dd4b0dee8785ea19d966f6a9b94fdbb (diff) | |
download | gcc-aa3340ba2aa8098f183c2b30f07c05023c0e657c.zip gcc-aa3340ba2aa8098f183c2b30f07c05023c0e657c.tar.gz gcc-aa3340ba2aa8098f183c2b30f07c05023c0e657c.tar.bz2 |
* configure.target: Add x86-64.
From-SVN: r46343
-rw-r--r-- | libstdc++-v3/ChangeLog | 8 | ||||
-rw-r--r-- | libstdc++-v3/configure.target | 10 |
2 files changed, 16 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 32f6c21..f4f0034 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,11 @@ +2001-10-19 Andreas Jaeger <aj@suse.de> + + * config/cpu/x86-64/bits/limits.h: New file. + + * config/cpu/x86-64/bits/atomicity.h: New file. + + * configure.target: Add x86-64. + 2001-10-17 Phil Edwards <pme@gcc.gnu.org> * docs/html/17_intro/howto.html: Remove 1999 links (and explain diff --git a/libstdc++-v3/configure.target b/libstdc++-v3/configure.target index db81c4ef..61f331e 100644 --- a/libstdc++-v3/configure.target +++ b/libstdc++-v3/configure.target @@ -57,6 +57,9 @@ case "${target_cpu}" in sparc*) cpu_include_dir="config/cpu/sparc/sparc32" ;; + x86_64*) + cpu_include_dir="config/cpu/x86-64" + ;; *) cpu_include_dir="config/cpu/generic" ;; @@ -137,14 +140,17 @@ esac # THIS TABLE IS SORTED. KEEP IT THAT WAY. case "${target}" in + cris-*-*) + LIMITSH=config/cpu/cris + ;; i?86-*-*) LIMITSH=config/cpu/i386 ;; powerpc-*-*) LIMITSH=config/cpu/powerpc ;; - cris-*-*) - LIMITSH=config/cpu/cris + x86_64-*-*) + LIMITSH=config/cpu/x86-64 ;; *) LIMITSH=config/cpu/generic |