We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61085e1 commit 972cfc6Copy full SHA for 972cfc6
setupext.py
@@ -1493,6 +1493,8 @@ def add_flags(self, ext):
1493
if sys.platform == 'win32':
1494
# PSAPI library needed for finding Tcl / Tk at run time
1495
ext.libraries.extend(['psapi'])
1496
+ elif sys.platform.startswith('linux'):
1497
+ ext.libraries.extend(['dl'])
1498
1499
1500
class BackendGtk(OptionalBackendPackage):
0 commit comments