[pypy-commit] pypy kill-exported-symbols-list: blind Windows fix

arigo noreply at buildbot.pypy.org
Wed Oct 22 18:20:08 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: kill-exported-symbols-list
Changeset: r74094:cd54f3746fde
Date: 2014-10-22 18:19 +0200
http://bitbucket.org/pypy/pypy/changeset/cd54f3746fde/

Log:	blind Windows fix

diff --git a/rpython/translator/platform/__init__.py b/rpython/translator/platform/__init__.py
--- a/rpython/translator/platform/__init__.py
+++ b/rpython/translator/platform/__init__.py
@@ -184,6 +184,9 @@
         cflags = list(self.cflags) + list(extra)
         return (cflags + list(eci.compile_extra) + args)
 
+    def get_shared_only_compile_flags(self):
+        return tuple(self.shared_only)
+
     def preprocess_library_dirs(self, library_dirs):
         if 'PYPY_LOCALBASE' in os.environ:
             dirs = list(self._preprocess_library_dirs(library_dirs))


More information about the pypy-commit mailing list