diff options
author | Oliver Smith-Denny <osde@microsoft.com> | 2025-09-18 00:24:49 +0300 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2025-09-26 01:04:10 +0300 |
commit | 2ff173af128e707867c6409f2e4ca308c255ca32 (patch) | |
tree | b718ccb0e7389f978858ec2875aecd57a0a5387d /BaseTools/Source/Python/AutoGen/GenC.py | |
parent | bc31103006cd468ca604f50c18cca7d73be27655 (diff) | |
download | edk2-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-x | BaseTools/Source/Python/AutoGen/GenC.py | 4 |
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:
|