Sikander Lhote <[email protected]> writes: > End of Output: (full output here: http://codepad.org/wPl7ZnYc) > ... > In file included from gevent/libev.h:2, > from gevent/gevent.core.c:236: > libev/ev.c: In function ‘ev_io_start’: > libev/ev.c:3181: warning: suggest parentheses around arithmetic in > operand of | > libev/ev.c: In function ‘ev_timer_start’: > libev/ev.c:3220: warning: unused variable ‘ocur_’ > libev/ev.c: In function ‘ev_idle_start’: > libev/ev.c:3888: warning: unused variable ‘ocur_’ > libev/ev.c: In function ‘ev_prepare_start’: > libev/ev.c:3928: warning: unused variable ‘ocur_’ > libev/ev.c: In function ‘ev_fork_start’: > libev/ev.c:4113: warning: unused variable ‘ocur_’ > libev/ev.c: In function ‘ev_async_start’: > libev/ev.c:4196: warning: unused variable ‘ocur_’ > libev/ev.c:4410:27: warning: "/*" within comment > libev/ev.c:4411:27: warning: "/*" within comment > lipo: can't open input file: /var/tmp//ccAFG7w1.out (No such file or > directory) > error: command 'llvm-gcc-4.2' failed with exit status 1
that had also been reported on the gevent list without a fix until now... let's try 0.13.6 again. Can you run the following commands: curl -O http://pypi.python.org/packages/source/g/gevent/gevent-0.13.6.tar.gz bsdtar vxf gevent-0.13.6.tar.gz cd gevent-0.13.6 ./fetch_libevent.py python setup.py build install The ./fetch_libevent.py command downloads and unpacks libevent. setup.py build install will then also compile libevent and link it statically. -- Cheers Ralf -- You received this message because you are subscribed to the Google Groups "mwlib" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/mwlib?hl=en.
