From 0fac8350dafdfc2335c2e6cb32d1c2aff17438f7 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Sun, 28 Aug 2016 08:35:25 -0700 Subject: [PATCH] mpi: (reopens #2437) revert changeset ffd079a4b2e4 The option -Wno-literal-suffix is not available on clang. Bug 2437 has outline of alternative conf.check solution to be pursued instead. --- src/mpi/wscript | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/mpi/wscript b/src/mpi/wscript index 1454eb524..24d483fe1 100644 --- a/src/mpi/wscript +++ b/src/mpi/wscript @@ -24,10 +24,6 @@ def configure(conf): for libpath in conf.env.LIBPATH_MPI: if 'mpi' in libpath: conf.env.append_value('LINKFLAGS_MPI', '-Wl,-rpath,'+libpath) - # Bug #2437, using OpenMPI 1.6.5 (possibly later versions) - # if upstream OpenMPI bug clears at some point, this - # can be removed - conf.env.append_value('CXXFLAGS', '-Wno-literal-suffix') conf.report_optional_feature("mpi", "MPI Support", True, '') else: conf.report_optional_feature("mpi", "MPI Support", False, 'mpic++ not found')