<div dir="ltr"><div>We use this approach in Fuchsia as well where we always statically link libc++ into our host tools and we haven't encountered any issues, but these are command line development tools which generally don't use any frameworks or host libraries. The only minor problem we ran into is that Clang's Darwin driver doesn't support `-static-libstdc++` flag, so we instead have to pass `-nostdlib++ ${clang_prefix}/../lib/libc++.a` through linker flags which is a bit unfortunate but not a big deal.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Feb 1, 2021 at 12:19 PM Louis Dionne via libcxx-dev <<a href="mailto:libcxx-dev@lists.llvm.org">libcxx-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="overflow-wrap: break-word;"><br><div><br><blockquote type="cite"><div>On Feb 1, 2021, at 15:16, Louis Dionne via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:</div><br><div><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none"><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none"><blockquote type="cite" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">On Feb 1, 2021, at 02:37, Tobias Hieta via libcxx-dev <<a href="mailto:libcxx-dev@lists.llvm.org" target="_blank">libcxx-dev@lists.llvm.org</a>> wrote:<br><br>Hello,<br><br>We are working on an application where we want to have full support<br>for C++17 but still ship on older versions of macOS (10.9/10.10 in<br>this case). Our plan was to build our own libc++ from llvm and ship it<br>with the application and then pass "-D_LIBCPP_DISABLE_AVAILABILITY"<br><br>This seemed to work fine in internal testing - but then we ran into a<br>similar issue as the one described here:<br><a href="https://reviews.llvm.org/D74489#2497044" target="_blank">https://reviews.llvm.org/D74489#2497044</a><br><br>Now I can patch my copy of libc++ with the upstream fix for this - but<br>the comment below made me think otherwise:<br><a href="https://reviews.llvm.org/D74489#2505156" target="_blank">https://reviews.llvm.org/D74489#2505156</a><br><br>We have run into problem where if you ship your own libc++ the system<br>frameworks loads the system libc++ and some strange errors happen - we<br>thought we could work around these issues - but maybe this is just us<br>being naive.<br><br>So I guess my question is - is it possible to ship a custom libc++ in<br>a .app archive for older versions of macOS in order to use C++17? Or<br>is my only hope to raise the minimum version of our app and always<br>link to the system libc++?<br></blockquote><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none"><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;float:none;display:inline">Generally, I would say this is a tricky thing to do. As you mention, the problem is that if you link against any other library that does link against the system-provided libc++.dylib, you'll have ODR violations because some symbols will be found in both libraries. As a result, I believe you could also end up in a situation where you end up using globals from one library when the globals from the other library has been initialized. So basically, nothing good happens.</span><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none"><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none"><span style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none;float:none;display:inline">If you can ensure that your application doesn't pull in the system libc++.dylib (even transitively), then this would in theory be safe to do. Due to the brittleness of the solution, my immediate reaction would be to not recommend that. The reason why some parts of C++17 aren't available on older platforms is that we put the vtables required for exception classes in the dylib. That is a code size optimization that we think is worth the trouble. You can generally use the parts of C++17 APIs that can't throw exceptions even on older platforms because they don't require those vtable symbols - perhaps that is something you can consider?</span><br style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none"></div></blockquote></div><br><div>Also, Chrome is known to do something similar to what you're inquiring about. They build libc++ statically with hidden visibility, and then they link it into their application. I assume they also make sure to not export any symbol from libc++ that would be created by using the libc++ headers (e.g. by instantiating some function template). I don't know their setup very well, but I assume they make sure to not link against any other system library that does require libc++.dylib from the system, or else things get trickier as I explained above. But as long as you satisfy that requirements, I believe things have worked fairly well for them so far. You just have to be able and willing to walk that fine line.</div><div><br></div><div>Louis</div><div><br></div></div>_______________________________________________<br>
libcxx-dev mailing list<br>
<a href="mailto:libcxx-dev@lists.llvm.org" target="_blank">libcxx-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/libcxx-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/libcxx-dev</a><br>
</blockquote></div></div>