conda-forge / openblas-feedstock

A conda-smithy repository for openblas.
BSD 3-Clause "New" or "Revised" License
9 stars 38 forks source link

Add .so symlinks #68

Closed SylvainCorlay closed 5 years ago

SylvainCorlay commented 5 years ago

Reverting the removal of symlinks in #62.

cc @isuruf

conda-forge-linter commented 5 years ago

Hi! This is the friendly automated conda-forge-linting service.

I just wanted to let you know that I linted all conda-recipes in your PR (recipe) and found it was in an excellent condition.

jschueller commented 5 years ago

+1, I was also needing this

isuruf commented 5 years ago

@jschueller, can you add your use-case to https://github.com/conda-forge/openblas-feedstock/issues/67 as well?

isuruf commented 5 years ago

These should go in https://github.com/conda-forge/blas-feedstock/blob/master/recipe/build_pkg.sh#L2 if they are to be added.

SylvainCorlay commented 5 years ago

These should go in https://github.com/conda-forge/blas-feedstock/blob/master/recipe/build_pkg.sh#L2 if they are to be added.

@isuruf I am not sure about this. How can I know if all BLAS implementations will produce a libblas.so.3 file and not some other suffix?

isuruf commented 5 years ago

They will. That's how this package is designed. Downstream packages will link to the netlib library which has soname 3 and we symlink that library to the optimized implementation in the other libblas variant.

SylvainCorlay commented 5 years ago

Thanks! Opening the blas-feedstock PR.