jeremy-w/objc-zmq

Compilation for iOS.

Closed this issue · 2 comments

When I try to compile this for iOS I get a ton of link errors. Are there any extra steps I have to take to get this to work?

You need to build libzmq for iOS in order to link against it. Try using scripts/build_universal.sh, but change it to have ARCHS="armv6 armv7". You might also need to add something to CFLAGS to enable Thumb compilation.

Once you have an iOS version of libzmq, you'll probably need to change the project's library search path to pick it up.

Jeremy, thanks for the guidance. I'll give your suggestions a try.