Update GCC toolchain detection in clang/lib/Driver

Bill Blum via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 23 14:19:20 PST 2025


Hello!

I'd like to submit a candidate one-off patch to
update clang/lib/Driver/ToolChains/Gnu.cpp to detect the newer available
gcc-toolchain versions.
https://github.com/llvm/llvm-project/pull/128438

Thanks for your time.



diff --git a/clang/lib/Driver/ToolChains/Gnu.cpp
b/clang/lib/Driver/ToolChains/Gnu.cpp
index f56eeda3cb5f..b95fb379f9b0 100644
--- a/clang/lib/Driver/ToolChains/Gnu.cpp
+++ b/clang/lib/Driver/ToolChains/Gnu.cpp
@@ -2381,6 +2381,8 @@ void
Generic_GCC::GCCInstallationDetector::AddDefaultGCCPrefixes(
       D.getVFS().exists("/opt/rh")) {
     // TODO: We may want to remove this, since the functionality
     //   can be achieved using config files.
+    Prefixes.push_back("/opt/rh/gcc-toolset-14/root/usr");
+    Prefixes.push_back("/opt/rh/gcc-toolset-13/root/usr");
     Prefixes.push_back("/opt/rh/gcc-toolset-12/root/usr");
     Prefixes.push_back("/opt/rh/gcc-toolset-11/root/usr");
     Prefixes.push_back("/opt/rh/gcc-toolset-10/root/usr");
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20250223/281e5ae6/attachment.html>


More information about the llvm-commits mailing list