Compiling zeroMQ (0MQ) for use on iPhone

I am trying to compile Objective-C bindings ( https://github.com/jeremy-w/objc-zmq ) for zeroMQ for use on iPhone.

I added the project "objc-zmq" as a function of the project in which I want to include it. Everything compiles, however, none of the characters can be found, since it is not associated with the binary libzmq.a.

How to compile libzmq.a for use with iPhone. Also, as soon as I have this, how do I get a link to the project?

I tried some of the suggestions of this post: Compile C lib for iPhone

However, for me it was completely barren. Any help would be greatly appreciated.

+6
ios objective-c message-queue zeromq
source share
1 answer

The shell library is built for i386 architecture only (i.e. iPhone Simulator). I wrote an article on how to compile a library for the ARM architecture , as well as link it to your iOS project (which THEN will work with objc-zmq wrapper).

+2
source share

All Articles