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 262342f commit dd181ceCopy full SHA for dd181ce
cpython-unix/build.py
@@ -823,7 +823,6 @@ def build_cpython(
823
# TODO support bdb/gdbm toggle
824
packages = {
825
"bzip2",
826
- "libffi",
827
"xz",
828
"zlib",
829
}
@@ -836,6 +835,10 @@ def build_cpython(
836
835
if libedit:
837
packages.add("libedit")
838
+ libffi = target_triple not in ("aarch64-apple-ios", "x86_64-apple-ios")
839
+ if libffi:
840
+ packages.add("libffi")
841
+
842
if libressl:
843
packages.add("libressl")
844
else:
0 commit comments