fix for bad or outdated mingw compiler

This commit is contained in:
Werner Saar 2015-11-23 16:20:14 +01:00
parent 318f0949c3
commit d1dd4e302e
1 changed files with 4 additions and 0 deletions

View File

@ -252,7 +252,11 @@ ifndef NOFORTRAN
ifeq ($(F_COMPILER), GFORTRAN)
-@echo "TIMER = INT_ETIME" >> $(NETLIB_LAPACK_DIR)/make.inc
ifdef SMP
ifeq ($(OSNAME), WINNT)
-@echo "LOADER = $(FC)" >> $(NETLIB_LAPACK_DIR)/make.inc
else
-@echo "LOADER = $(FC) -pthread" >> $(NETLIB_LAPACK_DIR)/make.inc
endif
else
-@echo "LOADER = $(FC)" >> $(NETLIB_LAPACK_DIR)/make.inc
endif