[pypy-commit] pypy openssl-for-macos: close branch to be merged

mattip pypy.commits at gmail.com
Wed Sep 11 01:43:45 EDT 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: openssl-for-macos
Changeset: r97426:eb707e329a18
Date: 2019-09-11 08:39 +0300
http://bitbucket.org/pypy/pypy/changeset/eb707e329a18/

Log:	close branch to be merged

diff --git a/pypy/doc/whatsnew-head.rst b/pypy/doc/whatsnew-head.rst
--- a/pypy/doc/whatsnew-head.rst
+++ b/pypy/doc/whatsnew-head.rst
@@ -66,3 +66,7 @@
 .. branch: cryptograhpt-2.7
 
 Update vendored cryptography used for _ssl to 2.7
+
+.. branch: openssl-for-macos
+
+Update _ssl on macos to statically link to openssl-1.1.1c
diff --git a/pypy/goal/targetpypystandalone.py b/pypy/goal/targetpypystandalone.py
--- a/pypy/goal/targetpypystandalone.py
+++ b/pypy/goal/targetpypystandalone.py
@@ -351,7 +351,7 @@
             ''' Use cffi to compile cffi interfaces to modules'''
             filename = os.path.join(pypydir, 'tool', 'build_cffi_imports.py')
             status, out, err = run_subprocess(str(driver.compute_exe_name()),
-                                              [filename])
+                                              [filename, '--embed-dependencies'])
             sys.stdout.write(out)
             sys.stderr.write(err)
             # otherwise, ignore errors


More information about the pypy-commit mailing list