10000 Merge pull request #10310 from QuLogic/libdl · matplotlib/matplotlib@4e140c8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4e140c8

Browse files
authored
Merge pull request #10310 from QuLogic/libdl
Add libdl on Unix-like systems.
2 parents a4c803a + 972cfc6 commit 4e140c8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

setupext.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1493,6 +1493,8 @@ def add_flags(self, ext):
14931493
if sys.platform == 'win32':
14941494
# PSAPI library needed for finding Tcl / Tk at run time
14951495
ext.libraries.extend(['psapi'])
1496+
elif sys.platform.startswith('linux'):
1497+
ext.libraries.extend(['dl'])
14961498

14971499

14981500
class BackendGtk(OptionalBackendPackage):

0 commit comments

Comments
 (0)
0