[clang] [WIP][clang] Fix std::tm etc. mangling on Solaris (PR #106353)

via cfe-commits cfe-commits at lists.llvm.org
Wed Aug 28 02:41:01 PDT 2024


================
@@ -1604,10 +1604,12 @@ static bool isTargetVariantEnvironment(const TargetInfo &TI,
   return false;
 }
 
-#if defined(__sun__) && defined(__svr4__)
+#if defined(__sun__) && defined(__svr4__) && defined(__clang__) &&             \
+    __clang__ < 20
----------------
cor3ntin wrote:

Does every version of gcc we support handles that?

https://github.com/llvm/llvm-project/pull/106353


More information about the cfe-commits mailing list