Hi Armin, [email protected] said: > it seems to be a problem with the QNX libs and/or the different front-ends qcc > and QCC. > > When I compile the performance tests with QCC the ZMQ stack is working !
This is to be expected. 0MQ is written in C++ and unless you are linking against the shared 0MQ library, the C++ runtime your application is using must match the C++ runtime 0MQ is using. In other words, trying to link an application compiled with compiler A against a static library compiled with compiler B will result in undefined behaviour and probably not work. -mato _______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
