diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-12-27 18:14:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-27 18:14:01 -0700 |
commit | 7bb2d5a8f0219aa5acb5fda05929f1a0745a1883 (patch) | |
tree | 71e79e35d1d463c44c1340fe943d6b869f5df061 /numpy/distutils | |
parent | 0131a3b95461d38846e25c8d132f0323699a766d (diff) | |
parent | 70572e4a2dc6c76818d142f987176f47486d947f (diff) | |
download | numpy-7bb2d5a8f0219aa5acb5fda05929f1a0745a1883.tar.gz |
Merge pull request #10128 from xoviat/system-info-libraries
BUG: Prefix library names with `lib` on windows.
Diffstat (limited to 'numpy/distutils')
-rw-r--r-- | numpy/distutils/system_info.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index bea120cf9..5bda213e7 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -804,6 +804,8 @@ class system_info(object): # doesn't seem correct if ext == '.dll.a': lib += '.dll' + if ext == '.lib': + lib = prefix + lib return lib return False |