KageKirin #blm Profile picture
Ninja graphics engineer, as in doing graphics work by day and studying Bujinkan by night. #blackLivesMatter #againstPoliceBrutality
Ray Garner Profile picture 1 subscribed
Feb 19, 2019 21 tweets 4 min read
Question for Android C devs: how do you invoke Libtool to link several static libraries into one?
I haven’t found any article explaining this. Explainer: I have several static libs that I want to link into a single static lib (so I can then edit the resulting lib with ar to remove a few annoying objects).
With Xcode, I simply have to call libtool -o libout.a libinput1.a ...
So I think it should work the same.