Complete revamp of PCBuild8 directory. Use subdirectories for each project under the main pcbuild solution. Now make extensive use of property sheets to simplify project configuration. x64 build fully supported, and the process for building PGO version (Profiler Guided Optimization) simplified. All projects are now present, except _ssl, which needs to be reimplemented. Also, some of the projects that require external libraries need extra work to fully compile on x64.
diff --git a/PCbuild8/rmpyc.py b/PCbuild8/rmpyc.py
index 43c8576..c3410f8 100644
--- a/PCbuild8/rmpyc.py
+++ b/PCbuild8/rmpyc.py
@@ -1,4 +1,5 @@
# Remove all the .pyc and .pyo files under ../Lib.
+import sys
def deltree(root):
@@ -21,5 +22,9 @@
return npyc, npyo
-npyc, npyo = deltree("../Lib")
+path = "../Lib"
+if len(sys.argv) > 1:
+ path = sys.argv[1]
+
+npyc, npyo = deltree(path)
print npyc, ".pyc deleted,", npyo, ".pyo deleted"