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.
libffi-devel
1 parent f290cdf commit 4bf478dCopy full SHA for 4bf478d
scripts/build-libsrtp.py
@@ -28,6 +28,9 @@ def run(cmd):
28
"-DCMAKE_VERBOSE_MAKEFILE:BOOL=ON",
29
"-DENABLE_OPENSSL=ON",
30
]
31
+if platform.system() == "Linux" and platform.machine() == "i686":
32
+ # There are no binary wheels for cffi on i686 anymore.
33
+ run(["yum", "install", "libffi-devel"])
34
if platform.system() == "Darwin" and "ARCHFLAGS" in os.environ:
35
archs = [x for x in os.environ["ARCHFLAGS"].split() if x != "-arch"]
36
cmake_args.append("-DCMAKE_OSX_ARCHITECTURES=" + ";".join(archs))
0 commit comments