Skip to content
Snippets Groups Projects
Commit f555b811 authored by Erik Schnetter's avatar Erik Schnetter Committed by Todd Gamblin
Browse files

Charm++: Ignore compiler warnings while configuring (#1981)

parent ff110871
No related branches found
No related tags found
No related merge requests found
......@@ -48,6 +48,8 @@ class Charm(Package):
# Support OpenMPI; see
# <https://charm.cs.illinois.edu/redmine/issues/1206>
patch("mpi.patch")
# Ignore compiler warnings while configuring
patch("strictpass.patch")
# Communication mechanisms (choose exactly one)
# TODO: Support Blue Gene/Q PAMI, Cray GNI, Cray shmem, CUDA
......
--- old/src/scripts/configure
+++ new/src/scripts/configure
@@ -2146,13 +2146,6 @@
test_result $? "$1" "$2" "$3"
strictpass=$pass
strictfail=$fail
- if test $pass -eq 1
- then
- if cat out | grep -i "warn" > /dev/null 2>&1
- then
- strictpass="0" && strictfail="1"
- fi
- fi
cat out >> $charmout
/bin/rm -f out
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment