Browse Source

Merge pull request #677 from j-bo/develop

Refs #676.  Fixed ONLY_CBLAS=1 compiling bug on windows.
tags/v0.2.16.rc1
Zhang Xianyi 10 years ago
parent
commit
1331642f24
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      exports/Makefile

+ 4
- 0
exports/Makefile View File

@@ -28,8 +28,10 @@ endif

ifeq ($(OSNAME), WINNT)
ifeq ($(F_COMPILER), GFORTRAN)
ifndef ONLY_CBLAS
EXTRALIB += -lgfortran
endif
endif
ifeq ($(USE_OPENMP), 1)
ifeq ($(C_COMPILER), GCC)
EXTRALIB += -lgomp
@@ -39,9 +41,11 @@ endif

ifeq ($(OSNAME), CYGWIN_NT)
ifeq ($(F_COMPILER), GFORTRAN)
ifndef ONLY_CBLAS
EXTRALIB += -lgfortran
endif
endif
endif

all::



Loading…
Cancel
Save