]> 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 79b21324dea843da45594bacf3e061cfaee7b229..95e28a988f1be13119064cf90177701e13f07d6f 100644 (file)
@@ -2,13 +2,7 @@
 # This file is used to define common static strings used by INF/DEC/DSC files\r
 #\r
 # Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>\r
-# This program and the accompanying materials\r
-# are licensed and made available under the terms and conditions of the BSD License\r
-# which accompanies this distribution.  The full text of the license may be found at\r
-# http://opensource.org/licenses/bsd-license.php\r
-#\r
-# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+# SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 import re\r
 \r
@@ -114,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