make gcc5 check silent when there's no gcc5

This commit is contained in:
Vadim Khotilovich 2015-12-18 14:34:16 -06:00
parent d867579a69
commit f97c4ccb60

View File

@ -1,5 +1,5 @@
export CC = $(if $(shell which gcc-5),gcc-5,gcc) export CC = $(if $(shell which gcc-5 2>/dev/null),gcc-5,gcc)
export CXX = $(if $(shell which g++-5),g++-5,g++) export CXX = $(if $(shell which g++-5 2>/dev/null),g++-5,g++)
export MPICXX = mpicxx export MPICXX = mpicxx
export LDFLAGS= -pthread -lm export LDFLAGS= -pthread -lm