Avoid adding a spurious dependency on the fortran runtime despite NOFORTRAN=1
for cases where a fortran compiler is present but not wanted (e.g. not fully functional)
This commit is contained in:
parent
abea977ded
commit
be147a9f28
|
@ -267,9 +267,10 @@ OBJCOPY = $(CROSS_SUFFIX)objcopy
|
||||||
OBJCONV = $(CROSS_SUFFIX)objconv
|
OBJCONV = $(CROSS_SUFFIX)objconv
|
||||||
|
|
||||||
|
|
||||||
# For detect fortran failed, only build BLAS.
|
# When fortran support was either not detected or actively deselected, only build BLAS.
|
||||||
ifeq ($(NOFORTRAN), 1)
|
ifeq ($(NOFORTRAN), 1)
|
||||||
NO_LAPACK = 1
|
NO_LAPACK = 1
|
||||||
|
override FEXTRALIB =
|
||||||
endif
|
endif
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue