On 2018-10-23, at 1:27 AM, Ryan Schmidt wrote: > Clang also has a library, though I don't know how it gets used. I have never > seen a program linked with the clang library, so maybe for clang this idea > will work.
There are a set of static libs for each version of clang called libclang_rt.* that have to be available in the architecture clang is building for. The main one is libclang_rt_10.4.a, but the others might be used as well. It is used in every clang build, on darwin at least. Ken
