Skip to content

Commit

Permalink
Added library path for not-darwin platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
pbruneau committed May 10, 2019
1 parent e37e9ed commit 0f6f38e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
else:
# assume linux otherwise, unless we support Windows in the future...
print("Platform Detection: Linux. Link to liblapacke...")
extra_link_args = ['-llapacke -llapack -lblas']
extra_link_args = ['-L/usr/lib -llapacke -llapack -lblas']
include_dirs = (numpy.distutils.misc_util.get_numpy_include_dirs() +
['/usr/include/lapacke'])

Expand Down

1 comment on commit 0f6f38e

@hsuantien
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me. Could you issue a PR? Thanks.

Please sign in to comment.