Commit 4e078304 authored by Bruce Momjian's avatar Bruce Momjian

Add mentioun of Intel compiler bug:

Intel compiler has a bug in checking for division by NAN
# (NaN == 0), -mp1 fixes it, so someday we might way to add it.
parent 899f49cf
...@@ -2715,7 +2715,8 @@ fi ...@@ -2715,7 +2715,8 @@ fi
# The Intel compiler on Linux supports most gcc options, but not # The Intel compiler on Linux supports most gcc options, but not
# all of them, so only add these options if we are really using # all of them, so only add these options if we are really using
# gcc # gcc. Intel compiler has a bug in checking for division by NAN
# (NaN == 0), -mp1 fixes it, so someday we might way to add it.
if test "$GCC" = yes; then if test "$GCC" = yes; then
......
dnl Process this file with autoconf to produce a configure script. dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.458 2006/04/21 23:11:58 momjian Exp $ dnl $PostgreSQL: pgsql/configure.in,v 1.459 2006/04/22 00:27:30 momjian Exp $
dnl dnl
dnl Developers, please strive to achieve this order: dnl Developers, please strive to achieve this order:
dnl dnl
...@@ -250,7 +250,8 @@ fi ...@@ -250,7 +250,8 @@ fi
# The Intel compiler on Linux supports most gcc options, but not # The Intel compiler on Linux supports most gcc options, but not
# all of them, so only add these options if we are really using # all of them, so only add these options if we are really using
# gcc # gcc. Intel compiler has a bug in checking for division by NAN
# (NaN == 0), -mp1 fixes it, so someday we might way to add it.
if test "$GCC" = yes; then if test "$GCC" = yes; then
AC_TRY_COMPILE([], [@%:@ifndef __INTEL_COMPILER AC_TRY_COMPILE([], [@%:@ifndef __INTEL_COMPILER
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment