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

brett.cannon python-checkins at python.org
Sat May 26 01:54:08 CEST 2007


Author: brett.cannon
Date: Sat May 26 01:54:04 2007
New Revision: 55596

Modified:
   python/branches/bcannon-objcap/build_secure_py.sh
Log:
Echo info out about  what is being compiled.  Also add warnings and debugging
symbols.


Modified: python/branches/bcannon-objcap/build_secure_py.sh
==============================================================================
--- python/branches/bcannon-objcap/build_secure_py.sh	(original)
+++ python/branches/bcannon-objcap/build_secure_py.sh	Sat May 26 01:54:04 2007
@@ -1,2 +1,4 @@
-gcc -c -IInclude -I. secure_python.c
+echo "Build secure_python.o ..."
+gcc -Wall -g -c -IInclude -I. secure_python.c
+echo "Build executable ..."
 gcc -o secure_python.exe secure_python.o libpython2.6.a


More information about the Python-checkins mailing list