]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/Common/GlobalData.py
BaseTools: Library hashing fix and optimization for --hash feature
[mirror_edk2.git] / BaseTools / Source / Python / Common / GlobalData.py
index 1853f1d2f6505bb5ff2ffefb2f98770d2b2f10b9..95e28a988f1be13119064cf90177701e13f07d6f 100644 (file)
@@ -108,3 +108,13 @@ gPackageHash = {}
 gModuleHash = {}\r
 gEnableGenfdsMultiThread = False\r
 gSikpAutoGenCache = set()\r
+\r
+# Dictionary for tracking Module build status as success or failure\r
+# False -> Fail : True -> Success\r
+gModuleBuildTracking = dict()\r
+\r
+# Dictionary of booleans that dictate whether a module or\r
+# library can be skiped\r
+# Top Dict:     Key: Arch Type              Value: Dictionary\r
+# Second Dict:  Key: Module\Library Name    Value: True\False\r
+gBuildHashSkipTracking = dict()\r