I have two third party closed libraries that have symbol crashes for at least two class names.
I have tried working around 'thinning' the libraries using lipo and then prefixing the symbols in one of the libraries. So the command should be something like:
objcopy --prefix-symbols=MYPREFIX_ THEIRLIBRARY.a
But this is failing in the i386 architectures with a segmentation fault and in the armv6/armv7 architectures with an unknown input format.
Is something like this possible, because I've got that sinking feeling...