Skip to content

Commit

Permalink
icc: suppress no_long_double
Browse files Browse the repository at this point in the history
equivalent to OMPI PR open-mpi/ompi#8015

suppress 100s of the following messages from icc:

icc: command line warning #10148: option '-Wno-long-double' not supported

Signed-off-by: Ralph Castain <rhc@pmix.org>
  • Loading branch information
rhc54 committed Aug 19, 2020
1 parent fe3cf98 commit 38b7fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/prte_setup_cc.m4
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ AC_DEFUN([PRTE_SETUP_CC],[
prte_cv_cc_wno_long_double="yes"
if test -s conftest.err ; then
dnl Yes, it should be "ignor", in order to catch ignoring and ignore
for i in unknown invalid ignor unrecognized ; do
for i in unknown invalid ignor unrecognized 'not supported'; do
$GREP -iq $i conftest.err
if test "$?" = "0" ; then
prte_cv_cc_wno_long_double="no"
Expand Down

0 comments on commit 38b7fbe

Please sign in to comment.