mirror of git://gcc.gnu.org/git/gcc.git
parent
82e014c98d
commit
aa3340ba2a
|
|
@ -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>
|
2001-10-17 Phil Edwards <pme@gcc.gnu.org>
|
||||||
|
|
||||||
* docs/html/17_intro/howto.html: Remove 1999 links (and explain
|
* docs/html/17_intro/howto.html: Remove 1999 links (and explain
|
||||||
|
|
|
||||||
|
|
@ -57,6 +57,9 @@ case "${target_cpu}" in
|
||||||
sparc*)
|
sparc*)
|
||||||
cpu_include_dir="config/cpu/sparc/sparc32"
|
cpu_include_dir="config/cpu/sparc/sparc32"
|
||||||
;;
|
;;
|
||||||
|
x86_64*)
|
||||||
|
cpu_include_dir="config/cpu/x86-64"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
cpu_include_dir="config/cpu/generic"
|
cpu_include_dir="config/cpu/generic"
|
||||||
;;
|
;;
|
||||||
|
|
@ -137,14 +140,17 @@ esac
|
||||||
# THIS TABLE IS SORTED. KEEP IT THAT WAY.
|
# THIS TABLE IS SORTED. KEEP IT THAT WAY.
|
||||||
|
|
||||||
case "${target}" in
|
case "${target}" in
|
||||||
|
cris-*-*)
|
||||||
|
LIMITSH=config/cpu/cris
|
||||||
|
;;
|
||||||
i?86-*-*)
|
i?86-*-*)
|
||||||
LIMITSH=config/cpu/i386
|
LIMITSH=config/cpu/i386
|
||||||
;;
|
;;
|
||||||
powerpc-*-*)
|
powerpc-*-*)
|
||||||
LIMITSH=config/cpu/powerpc
|
LIMITSH=config/cpu/powerpc
|
||||||
;;
|
;;
|
||||||
cris-*-*)
|
x86_64-*-*)
|
||||||
LIMITSH=config/cpu/cris
|
LIMITSH=config/cpu/x86-64
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
LIMITSH=config/cpu/generic
|
LIMITSH=config/cpu/generic
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue