quantum-espresso/install/m4/x_ac_qe_arch.m4

59 lines
2.0 KiB
Plaintext

# Copyright (C) 2001-2016 Quantum ESPRESSO Foundation
AC_DEFUN([X_AC_QE_ARCH], [
AC_MSG_CHECKING([ARCH])
# many HPC systems are configured so that running parallel programs
# interactively is disabled: on those systems, AC_PROG_FC / _CC
# would fail because they can't run the compiled executables.
# to work around that, let's pretend we are cross-compiling even if we aren't
# !!! this relies on undocumented Autoconf behavior !!!
# This is used to distinguish between true and fake cross compilation
# (only on NEC SX8 actually)
if test "$host" != "" ; then ranlib=echo; fi
# cross compiling? Why?
#cross_compiling=yes
if test "$host" = "" ; then host=$build; fi
# identify host architecture
if test "$arch" = ""
then
case $host in
ia64-*-linux-gnu ) arch=ia64 ;;
x86_64-*-linux-gnu ) arch=x86_64 ;;
arm-*linux* ) arch=arm ;;
aarch64-*-linux-gnu ) arch=arm ;;
*-pc-linux-gnu ) arch=ia32 ;;
*-apple-darwin* ) arch=mac686 ;;
*-pc-cygwin ) arch=cygwin ;;
sx*-nec* ) arch=necsx ;;
powerpc64-*-linux-gnu ) arch=ppc64 ;;
powerpc64le-*-linux-gnu ) arch=ppc64le ;;
*-*-mingw32 ) arch=mingw32;;
*-*-mingw64 ) arch=mingw64;;
* ) AC_MSG_WARN(Unrecognized build architecture)
;;
esac
# check for Cray machines
if test -d /proc/cray_xt && test "$arch" != "craype"; then
AC_MSG_WARN(This seems to be a cray but ARCH is not "craype")
fi
# workaround for IBM BG machines
test -d /bgsys && arch=ppc64-bg
test -f /bgsys/drivers/ppcfloor/bin/runjob && arch=ppc64-bgq
fi
case $arch in
ia32 | ia64 | necsx | ppc64-bg )
AC_MSG_WARN(Obsolete architecture? $arch)
;;
esac
AC_MSG_RESULT(${arch})
AC_SUBST(arch)
])