[pypy-svn] r79820 - pypy/branch/cpyext-darwin/pypy/tool/release

danchr at codespeak.net danchr at codespeak.net
Sat Dec 4 20:50:59 CET 2010


Author: danchr
Date: Sat Dec  4 20:50:57 2010
New Revision: 79820

Modified:
   pypy/branch/cpyext-darwin/pypy/tool/release/package.py   (contents, props changed)
Log:
Don't strip exported symbols in package.py

Doing so breaks cpyext on Mac OS X.

Modified: pypy/branch/cpyext-darwin/pypy/tool/release/package.py
==============================================================================
--- pypy/branch/cpyext-darwin/pypy/tool/release/package.py	(original)
+++ pypy/branch/cpyext-darwin/pypy/tool/release/package.py	Sat Dec  4 20:50:57 2010
@@ -78,7 +78,7 @@
     old_dir = os.getcwd()
     try:
         os.chdir(str(builddir))
-        os.system("strip " + str(archive_pypy_c))    # ignore errors
+        os.system("strip -x " + str(archive_pypy_c))    # ignore errors
         if USE_TARFILE_MODULE:
             import tarfile
             tf = tarfile.open(str(builddir.join(name + '.tar.bz2')), 'w:bz2')



More information about the Pypy-commit mailing list