removed auto detection of compilername, it only works if the file you're looking for (in our case "ifort") is in the same directory as the Makefile
This commit is contained in:
parent
b63044e45e
commit
e45e1316ba
|
@ -44,12 +44,7 @@ IMKLROOT ?= auto
|
|||
ACMLROOT ?= auto
|
||||
LAPACKROOT ?= auto
|
||||
|
||||
# if F90 empty: ifort if present, otherwise gfortran
|
||||
ifeq ($(wildcard ifort),"")
|
||||
F90?=gfortran
|
||||
else
|
||||
F90?=ifort
|
||||
endif
|
||||
|
||||
COMPILERNAME ?= $(F90)
|
||||
|
||||
|
|
Loading…
Reference in New Issue