Lines Matching full:libffi
75 # Python already handles bzip2 and libffi itself.
126 """The libffi.props file uses libffi-N.lib and libffi-N.dll. (At time of writing, N is 7, but
127 upstream Python uses 8 instead.) The CMake-based build of libffi produces unsuffixed files, so
128 fix libffi.props to match.
130 path = PYTHON_SRC / 'PCbuild/libffi.props'
132 content = re.sub(r'libffi-\d+\.lib', 'libffi.lib', content)
133 content = re.sub(r'libffi-\d+\.dll', 'libffi.dll', content)
171 set_text_element(root, 'libffiDir', str(TOP / 'external/libffi') + '\\') # Provides LICENSE
172 … set_text_element(root, 'libffiIncludeDir', str(TOP / 'out/libffi/dist/include') + '\\') # headers
173 set_text_element(root, 'libffiOutDir', str(TOP / 'out/libffi/Release') + '\\') # dll+lib
193 build_using_cmake(TOP / 'out/libffi', TOP / 'external/libffi')