diff options
author | Rebecca Cran <quic_rcran@quicinc.com> | 2022-05-04 02:48:20 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-05-13 14:58:54 +0000 |
commit | 708620d29db89d03e822b8d17dc75fbac865c6dc (patch) | |
tree | 857661b9fb50ca7889101e4eeb51fc3ca8b9b299 /BaseTools/Source/Python/AutoGen/BuildEngine.py | |
parent | 57c84113a14e9aef63bfa63ebfc9366cb7f87a55 (diff) | |
download | edk2-708620d29db89d03e822b8d17dc75fbac865c6dc.tar.gz edk2-708620d29db89d03e822b8d17dc75fbac865c6dc.tar.bz2 edk2-708620d29db89d03e822b8d17dc75fbac865c6dc.zip |
BaseTools: Remove RVCT supportedk2-stable202205-rc1
RVCT is obsolete and no longer used.
Remove support for it.
Signed-off-by: Rebecca Cran <quic_rcran@quicinc.com>
Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'BaseTools/Source/Python/AutoGen/BuildEngine.py')
-rw-r--r-- | BaseTools/Source/Python/AutoGen/BuildEngine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BaseTools/Source/Python/AutoGen/BuildEngine.py b/BaseTools/Source/Python/AutoGen/BuildEngine.py index 722fead75a..752a1a1f6a 100644 --- a/BaseTools/Source/Python/AutoGen/BuildEngine.py +++ b/BaseTools/Source/Python/AutoGen/BuildEngine.py @@ -317,7 +317,7 @@ class BuildRule: # @param LineIndex The line number from which the parsing will begin
# @param SupportedFamily The list of supported tool chain families
#
- def __init__(self, File=None, Content=None, LineIndex=0, SupportedFamily=[TAB_COMPILER_MSFT, "INTEL", "GCC", "RVCT"]):
+ def __init__(self, File=None, Content=None, LineIndex=0, SupportedFamily=[TAB_COMPILER_MSFT, "INTEL", "GCC"]):
self.RuleFile = File
# Read build rules from file if it's not none
if File is not None:
|