summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Steffen <osteffen@redhat.com>2023-01-16 18:40:38 +0100
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2023-01-17 19:06:32 +0000
commit5d25638e1b4c32bfb777a34712b56b9b6731e993 (patch)
tree3f534b5a2c9ff03978ec129ad98dca6928b508a6
parent7fab007f33e9ccfb420dbedd50bfe23af05fc899 (diff)
downloadedk2-5d25638e1b4c32bfb777a34712b56b9b6731e993.tar.gz
edk2-5d25638e1b4c32bfb777a34712b56b9b6731e993.tar.bz2
edk2-5d25638e1b4c32bfb777a34712b56b9b6731e993.zip
.pytool: CISettings.py: don't add scopes for GCC
All ext_dep.yml files for gcc have been removed and gcc is expected to be installed on the system (GCC5_*_PREFIX may indicate the location). No need to adjust the toolchain scopes for Linux builds anymore. Signed-off-by: Oliver Steffen <osteffen@redhat.com> Reviewed-by: Michael Kubacki <michael.kubacki@microsoft.com> Acked-by: Ard Biesheuvel <ardb@kernel.org> Acked-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Chris Fernald <chfernal@microsoft.com>
-rw-r--r--.pytool/CISettings.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/.pytool/CISettings.py b/.pytool/CISettings.py
index 76ac2b09db..d87c8e838e 100644
--- a/.pytool/CISettings.py
+++ b/.pytool/CISettings.py
@@ -169,15 +169,6 @@ class Settings(CiBuildSettingsManager, UpdateSettingsManager, SetupSettingsManag
else:
logging.warning("Falling back to using in-tree BaseTools")
- if is_linux and self.ActualToolChainTag.upper().startswith("GCC"):
- if "AARCH64" in self.ActualArchitectures:
- scopes += ("gcc_aarch64_linux",)
- if "ARM" in self.ActualArchitectures:
- scopes += ("gcc_arm_linux",)
- if "RISCV64" in self.ActualArchitectures:
- scopes += ("gcc_riscv64_unknown",)
- if "LOONGARCH64" in self.ActualArchitectures:
- scopes += ("gcc_loongarch64_unknown_linux",)
self.ActualScopes = scopes
return self.ActualScopes