summaryrefslogtreecommitdiff
path: root/BaseTools/Source/Python/build/buildoptions.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/build/buildoptions.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/build/buildoptions.py')
-rw-r--r--BaseTools/Source/Python/build/buildoptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/build/buildoptions.py b/BaseTools/Source/Python/build/buildoptions.py
index 5ec561f7ec..1787d80a44 100644
--- a/BaseTools/Source/Python/build/buildoptions.py
+++ b/BaseTools/Source/Python/build/buildoptions.py
@@ -42,7 +42,7 @@ class MyOptionParser():
def GetOption(self):
Parser = OptionParser(description=__copyright__, version=__version__, prog="build.exe", usage="%prog [options] [all|fds|genc|genmake|clean|cleanall|cleanlib|modules|libraries|run]")
Parser.add_option("-a", "--arch", action="append", dest="TargetArch",
- help="ARCHS is one of list: IA32, X64, ARM, AARCH64, RISCV64, LOONGARCH64 or EBC, which overrides target.txt's TARGET_ARCH definition. To specify more archs, please repeat this option.")
+ help="ARCHS is one of list: IA32, X64, AARCH64, RISCV64, LOONGARCH64 or EBC, which overrides target.txt's TARGET_ARCH definition. To specify more archs, please repeat this option.")
Parser.add_option("-p", "--platform", action="callback", type="string", dest="PlatformFile", callback=SingleCheckCallback,
help="Build the platform specified by the DSC file name argument, overriding target.txt's ACTIVE_PLATFORM definition.")
Parser.add_option("-m", "--module", action="callback", type="string", dest="ModuleFile", callback=SingleCheckCallback,