<div dir="ltr"><div dir="ltr">On Wed, 8 Apr 2020 at 10:14, krokus via cfe-users <<a href="mailto:cfe-users@lists.llvm.org">cfe-users@lists.llvm.org</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Richard,<br>
<br>
Thanks for the quick response; it gave me some directions to<br>
investigate further, otherwise it seemed I got stuck trying to make<br>
sense of many moving pieces in this puzzle. So, my understanding is<br>
that generally the run-time exception handling should _not_  depend on<br>
the order of the linkage (provided there're no violations as you<br>
mentioned). This is unlike the familiar case of order of object files<br>
affecting the linker's resolutions of external symbols, where the<br>
order _does_ matter.  That means what I'm seeing is rather anomalous,<br>
not a by-design behavior.<br>
<br>
Now, looking into the ideas of the ODR violation, I realise that in<br>
the set up I'm using, the clang (installed from pre-built<br>
<a href="mailto:package@llvm.org" target="_blank">package@llvm.org</a>) is used with '-stdlib=libc++', so the link pulls the<br>
libc++.dylib and the libc++abi.dylib. The compiler gets clang's libc++<br>
includes, the linker resolves these from clang's /lib, however OSX<br>
(10.13) has its own set of these .dynlibs in /usr/lib; system's<br>
libSystem pulls these (via libobjc.dylib). So the resulting binary<br>
loads two sets of libc++ and libc++abi.<br>
<br>
Are there any linkages between the clang's supplied libc++ and<br>
system's libc++abi, or it's meant to use exclusively clang's libc++?<br></blockquote><div><br></div><div>I'm afraid I don't know exactly how our packages nor the Mac OS X versions are configured. It's possible there's some mismatch here. If this is specific to the libc++ dylib that's included in OS X, the Apple folks would probably be interested in you contacting them directly.</div><div><br></div><div>One other thing that sometimes goes wrong when exceptions are thrown but can't be caught is that the type information on the throw and catch sides doesn't match, usually because of visibility attributes (or command-line flags) causing one or both versions of the type to be considered DSO-internal. Can you catch the exception with "catch (...)"?</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
Could this be the reason for exception breakdown? I understand that<br>
generally there should be only one libc++abi for the whole<br>
application, this way the type_info is common across all classes, and<br>
thus exceptions are correctly typed. This may explain why a sample<br>
test (try/throw/catch) works in isolation, as it may not cross from<br>
one set of libc++abi into the other.<br></blockquote><div><br></div><div>If you do have two different libc++abis in the same process (maybe one statically and one dynamically linked?) then it seems plausible that exception throw/catch would break down, because they would have different ideas of what some of the key globals involved in exception throw/catch are (for example, primitive type_info objects).</div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
I'm thinking what test code could I craft that would possibly trigger<br>
the use of both clang's and system's libc++abi? Clearly, the simple<br>
try/throw/catch works OK whether with or without -rpath to clang's<br>
lib.<br>
<br>
> Given the symptoms, it's possible that this is happening because part of your program is built with -fno-exceptions and part of your program is build without that flag, and an exception in question is propagating through a (perhaps inline) function that was built both ways. But that's just a guess.<br>
<br>
I tried to rebuild the whole application with -fexceptions; still the<br>
same symptoms. Also tried with -funwind-tables. The issue is present<br>
wth -O0 too. Reading on this, back in time Apple was advising Xcode<br>
users _not_ to use -no_compact_unwind switch, as it led to similar<br>
issue of exceptions not getting caught. Not sure what exactly was the<br>
effect of that switch, but clang does not seem to have this switch<br>
and, well, exceptions are being caught in isolated sample test.<br>
<br>
I appreciate your input.<br>
_______________________________________________<br>
cfe-users mailing list<br>
<a href="mailto:cfe-users@lists.llvm.org" target="_blank">cfe-users@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-users" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-users</a><br>
</blockquote></div></div>