Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mixing stdc++ and libc++ in an iOS project

I am having a difficult time configuring an iOS project which uses a static library linked against the old libstdc++ that gcc used. That library is 32 and 64-bit.

There are 6 libraries (libssl.a for example) that are 32-bit and must be updated. If I compile those libraries from source, they will be automatically linked with libc++, which will result in my linker complaining.

Therefore, here are my questions:

1) Is there any way to have a single static library inside the project use libstdc++, and have the others use libc++?

2) How can I compile libraries from source (like libcrypto and libssh) and force them use the old libstdc++ standard library?

3) Is there any other way out of this mess?

like image 913
csotiriou Avatar asked Jan 08 '23 11:01

csotiriou


1 Answers

1) Yes, you can certainly mix and match which C++ runtimes your C++ code uses so long as those separate modules don't actually pass objects between each-other. For example, if you have two modules in your app which just expose C APIs but internally use C++, then each can use whichever C++ runtime they want. Problems occur when trying to share objects between the runtimes.

2) You can use the '--stdlib=libstdc++' or '--stdlib=libc++' command line argument when compiling and linking to specify which C++ library to use. If your final executable needs to link against both, you'll need to manually specify the other one (eg: --stdlib=libc++ -lstdc++).

3) Yep, but note that libstdc++ was deprecated years ago and isn't even available on watchOS nor tvOS, so your best bet is to just get everything over to libc++.

like image 149
Jeremy Huddleston Sequoia Avatar answered Jan 14 '23 13:01

Jeremy Huddleston Sequoia