mordante wrote:

> Can we also have a fallback check for stdlibs that don't have a `.so` version 
> (such as embedded)? Something as simple as:
> 
> ```c++
>     std::string lib = GetFilePath("libc++.so", TC);
>     if (lib.empty())
>       lib = GetFilePath("libc++.a", TC);
> ```
Excellent point! thanks!

https://github.com/llvm/llvm-project/pull/84881
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to