6903453: Zero build on ARM and IA-64

Correctly set uname on ARM, and correctly build fdlibm on IA-64

Reviewed-by: ohair
This commit is contained in:
Gary Benson 2009-11-23 10:04:47 +00:00
parent d49120d466
commit d6a4ac9734
2 changed files with 4 additions and 1 deletions

View File

@ -165,6 +165,9 @@ ifeq ($(SYSTEM_UNAME), Linux)
sparc*) \
echo sparc \
;; \
arm*) \
echo arm \
;; \
*) \
echo $(mach) \
;; \

View File

@ -29,7 +29,7 @@
#ifdef __NEWVALID /* special setup for Sun test regime */
#if defined(i386) || defined(i486) || \
defined(intel) || defined(x86) || \
defined(i86pc) || defined(_M_IA64)
defined(i86pc) || defined(_M_IA64) || defined(ia64)
#define _LITTLE_ENDIAN
#endif
#endif