[pypy-svn] r33880 - pypy/dist/pypy/tool/build

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Oct 30 14:02:23 CET 2006


Author: cfbolz
Date: Mon Oct 30 14:02:22 2006
New Revision: 33880

Modified:
   pypy/dist/pypy/tool/build/systemoption.py
Log:
add an os config option


Modified: pypy/dist/pypy/tool/build/systemoption.py
==============================================================================
--- pypy/dist/pypy/tool/build/systemoption.py	(original)
+++ pypy/dist/pypy/tool/build/systemoption.py	Mon Oct 30 14:02:22 2006
@@ -8,4 +8,6 @@
                     sys.maxint, '-i --maxint'),
     ChoiceOption('byteorder', 'endianness, byte order (little/big)',
                     sys.byteorder, ['little', 'big'], '-b --byteorder'),
+    ChoiceOption('os', 'operating system', ['win32', 'linux'], default=None),
 ])
+



More information about the Pypy-commit mailing list