Skip to content

Commit

Permalink
Fixed for gem release.
Browse files Browse the repository at this point in the history
  • Loading branch information
translunar committed Jan 21, 2013
1 parent 1190db1 commit fb31f1a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Manifest.txt
Expand Up @@ -8,20 +8,25 @@ Guardfile
spec/io_spec.rb spec/io_spec.rb
spec/math_spec.rb spec/math_spec.rb
spec/nmatrix_spec.rb spec/nmatrix_spec.rb
spec/nmatrix_list_spec.rb
spec/nmatrix_yale_spec.rb spec/nmatrix_yale_spec.rb
spec/nvector_spec.rb spec/nvector_spec.rb
spec/slice_spec.rb spec/slice_spec.rb
spec/shortcuts_spec.rb
spec/elementwise_spec.rb spec/elementwise_spec.rb
spec/blas_spec.rb spec/blas_spec.rb
spec/lapack_spec.rb spec/lapack_spec.rb
spec/spec_helper.rb spec/spec_helper.rb
lib/nmatrix.rb lib/nmatrix.rb
lib/nmatrix/io/market.rb
lib/nmatrix/io/mat5_reader.rb lib/nmatrix/io/mat5_reader.rb
lib/nmatrix/io/mat_reader.rb lib/nmatrix/io/mat_reader.rb
lib/nmatrix/blas.rb lib/nmatrix/blas.rb
lib/nmatrix/lapack.rb
lib/nmatrix/monkeys.rb lib/nmatrix/monkeys.rb
lib/nmatrix/nmatrix.rb lib/nmatrix/nmatrix.rb
lib/nmatrix/nvector.rb lib/nmatrix/nvector.rb
lib/nmatrix/shortcuts.rb
lib/nmatrix/version.rb lib/nmatrix/version.rb
ext/nmatrix/data/complex.h ext/nmatrix/data/complex.h
ext/nmatrix/data/data.cpp ext/nmatrix/data/data.cpp
Expand Down
2 changes: 2 additions & 0 deletions ext/nmatrix/extconf.rb
Expand Up @@ -122,10 +122,12 @@ def create_conf_h(file)
# (substituting in the path of your cblas.h and clapack.h for the path I used). -- JW 8/27/12 # (substituting in the path of your cblas.h and clapack.h for the path I used). -- JW 8/27/12


find_library("lapack", "clapack_dgetrf", "/usr/local/lib", "/usr/local/atlas/lib") find_library("lapack", "clapack_dgetrf", "/usr/local/lib", "/usr/local/atlas/lib")
find_header("clapack.h", "/usr/local/atlas/include")
have_header("clapack.h") have_header("clapack.h")


find_library("cblas", "cblas_dgemm", "/usr/local/lib", "/usr/local/atlas/lib") find_library("cblas", "cblas_dgemm", "/usr/local/lib", "/usr/local/atlas/lib")
find_library("atlas", "ATL_dgemmNN", "/usr/local/lib", "/usr/local/atlas/lib", "/usr/lib") find_library("atlas", "ATL_dgemmNN", "/usr/local/lib", "/usr/local/atlas/lib", "/usr/lib")
find_header("cblas.h", "/usr/local/atlas/include")
have_header("cblas.h") have_header("cblas.h")


# Order matters here: ATLAS has to go after LAPACK: http://mail.scipy.org/pipermail/scipy-user/2007-January/010717.html # Order matters here: ATLAS has to go after LAPACK: http://mail.scipy.org/pipermail/scipy-user/2007-January/010717.html
Expand Down

0 comments on commit fb31f1a

Please sign in to comment.