make gcc5 check silent when there's no gcc5
This commit is contained in:
parent
d867579a69
commit
f97c4ccb60
4
Makefile
4
Makefile
@ -1,5 +1,5 @@
|
||||
export CC = $(if $(shell which gcc-5),gcc-5,gcc)
|
||||
export CXX = $(if $(shell which g++-5),g++-5,g++)
|
||||
export CC = $(if $(shell which gcc-5 2>/dev/null),gcc-5,gcc)
|
||||
export CXX = $(if $(shell which g++-5 2>/dev/null),g++-5,g++)
|
||||
|
||||
export MPICXX = mpicxx
|
||||
export LDFLAGS= -pthread -lm
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user