[pypy-svn] r55046 - pypy/dist/pypy/translator/tool

karlb at codespeak.net karlb at codespeak.net
Wed May 21 10:55:12 CEST 2008


Author: karlb
Date: Wed May 21 10:55:08 2008
New Revision: 55046

Modified:
   pypy/dist/pypy/translator/tool/cbuild.py
Log:
Added missing parameter info to the ExternalCompilationInfo docstring


Modified: pypy/dist/pypy/translator/tool/cbuild.py
==============================================================================
--- pypy/dist/pypy/translator/tool/cbuild.py	(original)
+++ pypy/dist/pypy/translator/tool/cbuild.py	Wed May 21 10:55:08 2008
@@ -62,6 +62,17 @@
 
         export_symbols: list of names that should be exported by the final
         binary.
+
+        compile_extra: list of parameters which will be directly passed to
+        the compiler
+
+        compile_extra: list of parameters which will be directly passed to
+        the linker
+
+        frameworks: list of Mac OS X frameworks which should passed to the
+        linker. Use this instead of the 'libraries' parameter if you want to
+        link to a framework bundle. Not suitable for unix-like .dylib
+        installations.
         """
         for name in self._ATTRIBUTES:
             value = locals()[name]



More information about the Pypy-commit mailing list