1
1

* it appears Solaris on Opteron identifies itself as i386-pc-solaris2.10, not

x86_64 as most opterons do.  So add test to see how many bytes a long is,
  and if it's 8 bytes, assume we're on an AMD64 instead of an IA32 for the
  purposes of assembly.

This commit was SVN r8384.
Этот коммит содержится в:
Brian Barrett 2005-12-06 13:31:05 +00:00
родитель 9efd0e0813
Коммит 372f9b0f29

Просмотреть файл

@ -760,13 +760,7 @@ case "${host}" in
ompi_cv_asm_arch="WINDOWS"
;;
i?86-*)
ompi_cv_asm_arch="IA32"
OMPI_ASM_SUPPORT_64BIT=1
OMPI_GCC_INLINE_ASSIGN='"movl [$]0, %0" : "=&r"(ret)'
;;
x86_64*)
i?86-*|x86_64*)
if test "$ac_cv_sizeof_long" = "4" ; then
ompi_cv_asm_arch="IA32"
else