Skip to content

Commit 63e884e

Browse files
mattipgaborbernat
andauthored
add libffi-7.dll to pypy on windows (#2141)
Co-authored-by: Bernát Gábor <bgabor8@bloomberg.net>
1 parent 17caadc commit 63e884e

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

docs/changelog/2141.feature.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
add libffi-7.dll to the hard-coded list of dlls for PyPy

src/virtualenv/create/via_global_ref/builtin/pypy/pypy2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def modules(cls):
112112

113113
@classmethod
114114
def _shared_libs(cls):
115-
return ["libpypy-c.dll"]
115+
return ["libpypy-c.dll", "libffi-7.dll"]
116116

117117
@classmethod
118118
def sources(cls, interpreter):

src/virtualenv/create/via_global_ref/builtin/pypy/pypy3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ def bin_dir(self):
6262

6363
@classmethod
6464
def _shared_libs(cls):
65-
return ["libpypy3-c.dll"]
65+
return ["libpypy3-c.dll", "libffi-7.dll"]

0 commit comments

Comments
 (0)