summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortraits <traits.zhang@gmail.com>2011-07-14 01:09:21 +0800
committertraits <traits.zhang@gmail.com>2011-07-14 01:09:21 +0800
commit19d2ab4853a0c15c1761756b6243093536b7c96f (patch)
treef2d541831b322c575521ce1d81e528438fb8d3e9
parenta5300420e24b05644885d2353af694b2a3dd135a (diff)
parent043927c7dbdd4806d51547731a4fa88d1be1300f (diff)
downloadopenblas-19d2ab4853a0c15c1761756b6243093536b7c96f.tar.gz
openblas-19d2ab4853a0c15c1761756b6243093536b7c96f.tar.bz2
openblas-19d2ab4853a0c15c1761756b6243093536b7c96f.zip
Merge branch 'hotfix-0.1alpha2.2' into develop
-rw-r--r--Changelog.txt8
-rw-r--r--Makefile5
-rw-r--r--Makefile.rule2
-rw-r--r--Makefile.system2
-rw-r--r--README1
5 files changed, 14 insertions, 4 deletions
diff --git a/Changelog.txt b/Changelog.txt
index 4c8ff2f98..b431c9723 100644
--- a/Changelog.txt
+++ b/Changelog.txt
@@ -1,5 +1,13 @@
OpenBLAS ChangeLog
====================================================================
+Version 0.1 alpha2.2
+14-Jul-2011
+
+common:
+ * Fixed a building bug when DYNAMIC_ARCH=1 & INTERFACE64=1.
+ (Refs issue #44 on github)
+
+====================================================================
Version 0.1 alpha2.1
28-Jun-2011
diff --git a/Makefile b/Makefile
index 0d654ee0b..6789272a3 100644
--- a/Makefile
+++ b/Makefile
@@ -31,7 +31,7 @@ SUBDIRS_ALL = $(SUBDIRS) test ctest utest exports benchmark ../laswp ../bench
all :: libs netlib tests shared
@echo
- @echo " GotoBLAS build complete."
+ @echo " OpenBLAS build complete."
@echo
@echo " OS ... $(OSNAME) "
@echo " Architecture ... $(ARCH) "
@@ -40,6 +40,9 @@ ifndef BINARY64
else
@echo " BINARY ... 64bit "
endif
+ifdef INTERFACE64
+ @echo " Use 64 bits int (equivalent to \"-i8\" in Fortran) "
+endif
@echo " C compiler ... $(C_COMPILER) (command line : $(CC))"
@echo " Fortran compiler ... $(F_COMPILER) (command line : $(FC))"
ifneq ($(OSNAME), AIX)
diff --git a/Makefile.rule b/Makefile.rule
index 7560193af..8d3d73ac9 100644
--- a/Makefile.rule
+++ b/Makefile.rule
@@ -3,7 +3,7 @@
#
# This library's version
-VERSION = 0.1alpha2.1
+VERSION = 0.1alpha2.2
# You can specify the target architecture, otherwise it's
# automatically detected.
diff --git a/Makefile.system b/Makefile.system
index 6cf65c7bd..f0487ac50 100644
--- a/Makefile.system
+++ b/Makefile.system
@@ -39,7 +39,7 @@ ifndef GOTOBLAS_MAKEFILE
export GOTOBLAS_MAKEFILE = 1
# Generating Makefile.conf and config.h
-DUMMY := $(shell $(MAKE) -C $(TOPDIR) -f Makefile.getarch CC="$(CC)" FC="$(FC)" HOSTCC="$(HOSTCC)" CFLAGS=$(GETARCH_FLAGS) BINARY=$(BINARY) USE_OPENMP=$(USE_OPENMP) TARGET_CORE=$(TARGET_CORE) all)
+DUMMY := $(shell $(MAKE) -C $(TOPDIR) -f Makefile.getarch CC="$(CC)" FC="$(FC)" HOSTCC="$(HOSTCC)" CFLAGS="$(GETARCH_FLAGS)" BINARY=$(BINARY) USE_OPENMP=$(USE_OPENMP) TARGET_CORE=$(TARGET_CORE) all)
ifndef TARGET_CORE
include $(TOPDIR)/Makefile.conf
diff --git a/README b/README
index 9a7b16326..248741544 100644
--- a/README
+++ b/README
@@ -72,7 +72,6 @@ Please see Changelog.txt to obtain the differences between GotoBLAS2 1.13 BSD ve
9.Known Issues
* The number of CPUs/Cores should less than or equal to 8*sizeof(unsigned long). On 64 bits, the limit
is 64. On 32 bits, it is 32.
-* This library is not compatible with EKOPath Compiler Suite 4.0.10 (http://www.pathscale.com/ekopath-compiler-suite). However, Path64 (https://github.com/path64/compiler) could compile the codes successfully.
10. Specification of Git Branches
We used the git branching model in this article (http://nvie.com/posts/a-successful-git-branching-model/).