]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/Common/GlobalData.py
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / BaseTools / Source / Python / Common / GlobalData.py
old mode 100644 (file)
new mode 100755 (executable)
index 79b2132..197bd83
@@ -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
@@ -24,6 +18,7 @@ gGlobalDefines = {}
 gPlatformDefines = {}\r
 # PCD name and value pair for fixed at build and feature flag\r
 gPlatformPcds = {}\r
+gPlatformFinalPcds = {}\r
 # PCDs with type that are not fixed at build and feature flag\r
 gPlatformOtherPcds = {}\r
 gActivePlatform = None\r
@@ -35,6 +30,7 @@ gProcessingFile = ''
 gBuildingModule = ''\r
 gSkuids = []\r
 gDefaultStores = []\r
+gGuidDict = {}\r
 \r
 # definition for a MACRO name.  used to create regular expressions below.\r
 _MacroNamePattern = "[A-Z][A-Z0-9_]*"\r
@@ -76,7 +72,7 @@ gAutoGenPhase = False
 # The Conf dir outside the workspace dir\r
 #\r
 gConfDirectory = ''\r
-\r
+gCmdConfDir = ''\r
 gBuildDirectory = ''\r
 #\r
 # The relative default database file path\r
@@ -110,7 +106,20 @@ gUseHashCache = None
 gBinCacheDest = None\r
 gBinCacheSource = None\r
 gPlatformHash = None\r
-gPackageHash = {}\r
-gModuleHash = {}\r
-gEnableGenfdsMultiThread = False\r
+gPlatformHashFile = None\r
+gPackageHash = None\r
+gPackageHashFile = None\r
+gModuleHashFile = None\r
+gCMakeHashFile = None\r
+gHashChainStatus = None\r
+gModulePreMakeCacheStatus = None\r
+gModuleMakeCacheStatus = None\r
+gFileHashDict = None\r
+gModuleAllCacheStatus = None\r
+gModuleCacheHit = None\r
+\r
+gEnableGenfdsMultiThread = True\r
 gSikpAutoGenCache = set()\r
+# Common lock for the file access in multiple process AutoGens\r
+file_lock = None\r
+\r