[Python-checkins] r54899 - python/branches/bcannon-objcap/BRANCH_NOTES python/branches/bcannon-objcap/build_secure_py.sh

brett.cannon python-checkins at python.org
Sat Apr 21 02:12:42 CEST 2007


Author: brett.cannon
Date: Sat Apr 21 02:12:40 2007
New Revision: 54899

Added:
   python/branches/bcannon-objcap/build_secure_py.sh   (contents, props changed)
Modified:
   python/branches/bcannon-objcap/BRANCH_NOTES
Log:
Add simple shell script for building proof-of-concept app.


Modified: python/branches/bcannon-objcap/BRANCH_NOTES
==============================================================================
--- python/branches/bcannon-objcap/BRANCH_NOTES	(original)
+++ python/branches/bcannon-objcap/BRANCH_NOTES	Sat Apr 21 02:12:40 2007
@@ -3,6 +3,12 @@
 =======
 Attempt to develop some form of security model for Python.
 
+=====
+Usage
+=====
+1. Build Python as normal.
+2. Run ``build_secure_py.sh`` to build ``secure_python.exe``.
+
 ======
 Status
 ======

Added: python/branches/bcannon-objcap/build_secure_py.sh
==============================================================================
--- (empty file)
+++ python/branches/bcannon-objcap/build_secure_py.sh	Sat Apr 21 02:12:40 2007
@@ -0,0 +1,2 @@
+gcc -c -IInclude -I. secure_python.c
+gcc -o secure_python.exe secure_python.o libpython2.6.a


More information about the Python-checkins mailing list