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 e0b31b3 commit 27e7805Copy full SHA for 27e7805
pyoxidizer/src/distutils/_msvccompiler.py
@@ -586,6 +586,11 @@ def extension_link_shared_object(self,
586
# directory that doesn't outlive this process.
587
object_paths = []
588
for i, o in enumerate(objects):
589
+ if 'libffi_msvc' in o:
590
+ print('Ignored static {}'.format(o))
591
+ # https://github.com/indygreg/python-build-standalone/issues/23
592
+ # cffi includes a near replica of CPython's custom libffi.
593
+ continue
594
p = os.path.join(dest_path, '%s.%d.o' % (name, i))
595
shutil.copyfile(o, p)
596
object_paths.append(p)
0 commit comments