Merge branch 'hotfix-0.1alpha2.1' into develop

This commit is contained in:
traits 2011-06-28 15:46:55 +08:00
commit a5300420e2
3 changed files with 12 additions and 1 deletions

View File

@ -1,4 +1,12 @@
OpenBLAS ChangeLog OpenBLAS ChangeLog
====================================================================
Version 0.1 alpha2.1
28-Jun-2011
common:
* Stop the build and output the error message when detecting
fortran compiler failed. (Refs issue #42 on github)
==================================================================== ====================================================================
Version 0.1 alpha2 Version 0.1 alpha2
23-Jun-2011 23-Jun-2011

View File

@ -102,6 +102,9 @@ endif
libs : libs :
ifeq ($(CORE), UNKOWN) ifeq ($(CORE), UNKOWN)
$(error OpenBLAS: Detecting CPU failed. Please set TARGET explicitly, e.g. make TARGET=your_cpu_target. Please read README for the detail.) $(error OpenBLAS: Detecting CPU failed. Please set TARGET explicitly, e.g. make TARGET=your_cpu_target. Please read README for the detail.)
endif
ifeq ($(NOFORTRAN), 1)
$(error OpenBLAS: Detecting fortran compiler failed. Please install fortran compiler, e.g. gfortran, ifort, openf90.)
endif endif
-ln -fs $(LIBNAME) libopenblas.$(LIBSUFFIX) -ln -fs $(LIBNAME) libopenblas.$(LIBSUFFIX)
for d in $(SUBDIRS) ; \ for d in $(SUBDIRS) ; \

View File

@ -3,7 +3,7 @@
# #
# This library's version # This library's version
VERSION = 0.1alpha2 VERSION = 0.1alpha2.1
# You can specify the target architecture, otherwise it's # You can specify the target architecture, otherwise it's
# automatically detected. # automatically detected.