Browse Source

Fixed #147: LAPACK symbols were not being exported for version 3.4.2

tags/v0.2.5
Zaheer Chothia 13 years ago
parent
commit
ca4136cf41
2 changed files with 4 additions and 1 deletions
  1. +2
    -0
      .gitignore
  2. +2
    -1
      exports/gensymbol

+ 2
- 0
.gitignore View File

@@ -8,6 +8,8 @@ lapack-3.1.1
lapack-3.1.1.tgz
lapack-3.4.1
lapack-3.4.1.tgz
lapack-3.4.2
lapack-3.4.2.tgz
*.so
*.a
.svn


+ 2
- 1
exports/gensymbol View File

@@ -2669,7 +2669,8 @@
if ($ARGV[5] == 1) {
#NO_LAPACK=1
@underscore_objs = (@blasobjs, @misc_underscore_objs);
} elsif (-d "../lapack-3.1.1" || -d "../lapack-3.4.0" || -d "../lapack-3.4.1") {
} elsif (-d "../lapack-3.1.1" || -d "../lapack-3.4.0" || -d "../lapack-3.4.1" ||
-d "../lapack-3.4.2") {
@underscore_objs = (@blasobjs, @lapackobjs, @lapackobjs2, @misc_underscore_objs);
} else {
@underscore_objs = (@blasobjs, @lapackobjs, @misc_underscore_objs);


Loading…
Cancel
Save