Use -mieee for alpha compiles.
This commit is contained in:
parent
0c7a5874d4
commit
218693794d
|
|
@ -56,12 +56,17 @@ fi
|
|||
AC_SUBST(DLLIB)
|
||||
|
||||
|
||||
# Darwin requires -no-cpp-precomp
|
||||
# Processor specific compile flags
|
||||
case "${host}" in
|
||||
# MacOSX/Darwin needs the -no-cpp-precomp
|
||||
*-*-darwin*)
|
||||
CPPFLAGS="-no-cpp-precomp $CPPFLAGS"
|
||||
CFLAGS="-no-cpp-precomp $CFLAGS"
|
||||
;;
|
||||
alpha*-*-linux*)
|
||||
CPPFLAGS="-mieee $CPPFLAGS"
|
||||
CFLAGS="-mieee $CFLAGS"
|
||||
;;
|
||||
esac
|
||||
|
||||
# see how we can give some resource usage stats with -v
|
||||
|
|
|
|||
Loading…
Reference in New Issue