summaryrefslogtreecommitdiff
path: root/BaseTools/Source/Python/AutoGen/GenC.py
diff options
context:
space:
mode:
authorOliver Smith-Denny <osde@microsoft.com>2025-09-18 00:24:49 +0300
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2025-09-26 01:04:10 +0300
commit2ff173af128e707867c6409f2e4ca308c255ca32 (patch)
treeb718ccb0e7389f978858ec2875aecd57a0a5387d /BaseTools/Source/Python/AutoGen/GenC.py
parentbc31103006cd468ca604f50c18cca7d73be27655 (diff)
downloadedk2-2ff173af128e707867c6409f2e4ca308c255ca32.tar.xz
BaseTools: Remove ARM32 Support
edk2 is dropping support for the ARM32 architecture. This commit removes ARM32 code from BaseTools. Signed-off-by: Oliver Smith-Denny <osde@microsoft.com>
Diffstat (limited to 'BaseTools/Source/Python/AutoGen/GenC.py')
-rwxr-xr-xBaseTools/Source/Python/AutoGen/GenC.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/BaseTools/Source/Python/AutoGen/GenC.py b/BaseTools/Source/Python/AutoGen/GenC.py
index 86991e7675..1da74813b9 100755
--- a/BaseTools/Source/Python/AutoGen/GenC.py
+++ b/BaseTools/Source/Python/AutoGen/GenC.py
@@ -2042,8 +2042,8 @@ def CreateFooterCode(Info, AutoGenC, AutoGenH):
def CreateCode(Info, AutoGenC, AutoGenH, StringH, UniGenCFlag, UniGenBinBuffer, StringIdf, IdfGenCFlag, IdfGenBinBuffer):
CreateHeaderCode(Info, AutoGenC, AutoGenH)
- # The only 32 bit archs we have are IA32 and ARM, everything else is 64 bit
- Bitwidth = 32 if Info.Arch == 'IA32' or Info.Arch == 'ARM' else 64
+ # The only 32 bit arch we have is IA32, everything else is 64 bit
+ Bitwidth = 32 if Info.Arch == 'IA32' else 64
if GlobalData.gStackCookieValues64 == [] and os.path.exists(os.path.join(Info.PlatformInfo.BuildDir, "StackCookieValues64.json")):
with open (os.path.join(Info.PlatformInfo.BuildDir, "StackCookieValues64.json"), "r") as file: