Add minimal ia64 support.

* libc/include/machine/ieeefp.h: Add ia64 support.
	* configure.host: Likewise.
This commit is contained in:
Jim Wilson 2000-05-11 02:28:06 +00:00
parent f35ceefaf0
commit ec463fc7a3
3 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Wed May 10 19:24:53 2000 Jim Wilson <wilson@cygnus.com>
* libc/include/machine/ieeefp.h: Add ia64 support.
* configure.host: Likewise.
Wed May 10 13:52:24 2000 Egor Duda <deo@logos-m.ru>
* libc/time/asctime_r.c (asctime_r): Change output format. Day of

View File

@ -101,6 +101,8 @@ case "${host_cpu}" in
;;
esac
;;
ia64*)
;;
m32r*)
machine_dir=m32r
;;

View File

@ -144,7 +144,13 @@
#define __IEEE_BIG_ENDIAN
#endif
#ifdef __ia64__
#ifdef __BIG_ENDIAN__
#define __IEEE_BIG_ENDIAN
#else
#define __IEEE_LITTLE_ENDIAN
#endif
#endif
#ifndef __IEEE_BIG_ENDIAN
#ifndef __IEEE_LITTLE_ENDIAN