[email protected] said: > I'm on a 64 bit OS and use gcc as compiler. > > I would like provide both 64 bit & 32 bit zeromq library. > > Is it possible?
Yes. > How to configure? Depends very much on your OS. I'd go and build the 64-bit build normally (i.e. ./configure; make), then build the 32-bit library in a separate build tree. To build a 32-bit library this configure command would be a start: $ CC="gcc -m32" CXX="g++ -m32" ./configure If configure fails it means you don't have the appropriate 32-bit libraries installed. -mato _______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
