1
1

Merge pull request #8015 from hppritcha/topic/squash_icc_no_log_warning

suppress icc long double message
Этот коммит содержится в:
Jeff Squyres 2020-08-26 10:40:26 -04:00 коммит произвёл GitHub
родитель b1874e400e 6df0e53421
Коммит 8727e981b2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 8 добавлений и 2 удалений

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

@ -16,6 +16,9 @@ dnl Copyright (c) 2012-2017 Los Alamos National Security, LLC. All rights
dnl reserved. dnl reserved.
dnl Copyright (c) 2015-2019 Research Organization for Information Science dnl Copyright (c) 2015-2019 Research Organization for Information Science
dnl and Technology (RIST). All rights reserved. dnl and Technology (RIST). All rights reserved.
dnl Copyright (c) 2020 Triad National Security, LLC. All rights
dnl reserved.
dnl
dnl $COPYRIGHT$ dnl $COPYRIGHT$
dnl dnl
dnl Additional copyrights may follow dnl Additional copyrights may follow
@ -328,7 +331,7 @@ AC_DEFUN([OPAL_SETUP_CC],[
opal_cv_cc_wno_long_double="yes" opal_cv_cc_wno_long_double="yes"
if test -s conftest.err ; then if test -s conftest.err ; then
dnl Yes, it should be "ignor", in order to catch ignoring and ignore 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 $GREP -iq $i conftest.err
if test "$?" = "0" ; then if test "$?" = "0" ; then
opal_cv_cc_wno_long_double="no" opal_cv_cc_wno_long_double="no"

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

@ -16,6 +16,9 @@ dnl Copyright (c) 2007-2009 Sun Microsystems, Inc. All rights reserved.
dnl Copyright (c) 2008-2013 Cisco Systems, Inc. All rights reserved. dnl Copyright (c) 2008-2013 Cisco Systems, Inc. All rights reserved.
dnl Copyright (c) 2015-2016 Research Organization for Information Science dnl Copyright (c) 2015-2016 Research Organization for Information Science
dnl and Technology (RIST). All rights reserved. dnl and Technology (RIST). All rights reserved.
dnl Copyright (c) 2020 Triad National Security, LLC. All rights
dnl reserved.
dnl
dnl $COPYRIGHT$ dnl $COPYRIGHT$
dnl dnl
dnl Additional copyrights may follow dnl Additional copyrights may follow
@ -145,7 +148,7 @@ AC_DEFUN([_OPAL_SETUP_CXX_COMPILER_BACKEND],[
opal_cv_cxx_wno_long_double="yes" opal_cv_cxx_wno_long_double="yes"
if test -s conftest.err ; then if test -s conftest.err ; then
dnl Yes, it should be "ignor", in order to catch ignoring and ignore 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 $GREP -iq $i conftest.err
if test "$?" = "0" ; then if test "$?" = "0" ; then
opal_cv_cxx_wno_long_double="no" opal_cv_cxx_wno_long_double="no"