Support shared library build; tests do not currently work for shared build.
svn path=/nixpkgs/trunk/; revision=33613
This commit is contained in:
parent
2f97078c96
commit
3c69bcf348
@ -1,5 +1,8 @@
|
|||||||
{ stdenv, fetchurl, gfortran, atlas, cmake, python }:
|
{ stdenv, fetchurl, gfortran, atlas, cmake, python, shared ? false }:
|
||||||
|
let
|
||||||
|
atlasMaybeShared = if shared then atlas.override {shared=true;} else atlas;
|
||||||
|
usedLibExtension = if shared then ".so" else ".a";
|
||||||
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "liblapack-3.4.0";
|
name = "liblapack-3.4.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
@ -7,18 +10,20 @@ stdenv.mkDerivation {
|
|||||||
sha256 = "1sf30v1ps5icg67dvw5sbx5yhypx13am470gqg2f7l04f3wrw4x7";
|
sha256 = "1sf30v1ps5icg67dvw5sbx5yhypx13am470gqg2f7l04f3wrw4x7";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ atlas ];
|
propagatedBuildInputs = [ atlasMaybeShared ];
|
||||||
buildInputs = [ gfortran cmake ];
|
buildInputs = [ gfortran cmake ];
|
||||||
buildNativeInputs = [ python ];
|
buildNativeInputs = [ python ];
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DUSE_OPTIMIZED_BLAS=ON"
|
"-DUSE_OPTIMIZED_BLAS=ON"
|
||||||
"-DBLAS_ATLAS_f77blas_LIBRARY=${atlas}/lib/libf77blas.a"
|
"-DBLAS_ATLAS_f77blas_LIBRARY=${atlasMaybeShared}/lib/libf77blas${usedLibExtension}"
|
||||||
"-DBLAS_ATLAS_atlas_LIBRARY=${atlas}/lib/libatlas.a"
|
"-DBLAS_ATLAS_atlas_LIBRARY=${atlasMaybeShared}/lib/libatlas${usedLibExtension}"
|
||||||
"-DCMAKE_Fortran_FLAGS=-fPIC"
|
"-DCMAKE_Fortran_FLAGS=-fPIC"
|
||||||
];
|
]
|
||||||
|
++ (stdenv.lib.optional shared "-DBUILD_SHARED_LIBS=ON")
|
||||||
|
;
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = ! shared;
|
||||||
|
|
||||||
checkPhase = "
|
checkPhase = "
|
||||||
sed -i 's,^#!.*,#!${python}/bin/python,' lapack_testing.py
|
sed -i 's,^#!.*,#!${python}/bin/python,' lapack_testing.py
|
||||||
|
Loading…
x
Reference in New Issue
Block a user