Advertisement
Guest User

Untitled

a guest
Jul 19th, 2012
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.99 KB | None | 0 0
  1. MacBook-Pro-de-Gabriel:test gabriel$ cpanm EV
  2. --> Working on EV
  3. Fetching http://www.cpan.org/authors/id/M/ML/MLEHMANN/EV-4.11.tar.gz ... OK
  4. Configuring EV-4.11 ... OK
  5. Building and testing EV-4.11 ... FAIL
  6. ! Installing EV failed. See /Users/gabriel/.cpanm/build.log for details.
  7. MacBook-Pro-de-Gabriel:test gabriel$ cpan EV
  8. CPAN: Storable loaded ok (v2.30)
  9. Reading '/Users/gabriel/.cpan/Metadata'
  10. Database was generated on Fri, 18 May 2012 08:15:04 GMT
  11. CPAN: LWP::UserAgent loaded ok (v6.04)
  12. CPAN: Time::HiRes loaded ok (v1.9725)
  13. Fetching with LWP:
  14. http://cpan.kinghost.net/authors/01mailrc.txt.gz
  15. CPAN: YAML loaded ok (v0.81)
  16. Reading '/Users/gabriel/.cpan/sources/authors/01mailrc.txt.gz'
  17. CPAN: Compress::Zlib loaded ok (v2.052)
  18. ............................................................................DONE
  19. Fetching with LWP:
  20. http://cpan.kinghost.net/modules/02packages.details.txt.gz
  21. Reading '/Users/gabriel/.cpan/sources/modules/02packages.details.txt.gz'
  22. Database was generated on Thu, 19 Jul 2012 08:12:55 GMT
  23. ............................................................................DONE
  24. Fetching with LWP:
  25. http://cpan.kinghost.net/modules/03modlist.data.gz
  26. Reading '/Users/gabriel/.cpan/sources/modules/03modlist.data.gz'
  27. ............................................................................DONE
  28. Writing /Users/gabriel/.cpan/Metadata
  29. Running install for module 'EV'
  30. Running make for M/ML/MLEHMANN/EV-4.11.tar.gz
  31. Fetching with LWP:
  32. http://cpan.kinghost.net/authors/id/M/ML/MLEHMANN/EV-4.11.tar.gz
  33. CPAN: Digest::SHA loaded ok (v5.71)
  34. Fetching with LWP:
  35. http://cpan.kinghost.net/authors/id/M/ML/MLEHMANN/CHECKSUMS
  36. Checksum for /Users/gabriel/.cpan/sources/authors/id/M/ML/MLEHMANN/EV-4.11.tar.gz ok
  37. CPAN: File::Temp loaded ok (v0.22)
  38. CPAN: Parse::CPAN::Meta loaded ok (v1.4404)
  39. CPAN: CPAN::Meta loaded ok (v2.120921)
  40. CPAN: Module::CoreList loaded ok (v2.66)
  41.  
  42. CPAN.pm: Building M/ML/MLEHMANN/EV-4.11.tar.gz
  43.  
  44.  
  45. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  46.  
  47.  
  48. Welcome to EV configuration. If you are in a hurry, just press return here
  49. and hope for the best. The defaults should usually do.
  50.  
  51. Skip further questions and use defaults (y/n)? [y]
  52.  
  53. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  54.  
  55.  
  56. POSIX optionally offers support for a monotonic clock source. EV
  57. can take advantage of this clock source to detect time jumps more
  58. reliably. Unfortunately, some systems are bound to be broken, so you can
  59. disable this here: you can completely disable the detection and use of
  60. the monotonic clock by answering 'n' here. Support for this clock type
  61. will otherwise be autodetected at both compile- and runtime. (this setting
  62. currently affects the use of nanosleep over select as well).
  63.  
  64. Enable optional support for CLOCK_MONOTONIC (y/n)? [y] y
  65.  
  66. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  67.  
  68.  
  69. POSIX optionally offers support for a (potentially) high-resolution
  70. realtime clock interface. In a good implementation, using it is faster
  71. than the normal method of using gettimeofday. Unfortunately, this option
  72. is also bound to be broken on some systems, and current EV versions do not
  73. actually call gettimeofday very often, so it defaults to no.
  74.  
  75. Prefer clock_gettime (CLOCK_REALTIME) over gettimeofday (y/n)? [n] n
  76.  
  77. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  78.  
  79.  
  80. EV can use various backends with various portability issues. The select
  81. backend is the most portable and makes for a good fallback, but it can be
  82. limited to a low number of file descriptors and/or might not compile. If
  83. you have problems with compiling ev_select.c, you might try to play around
  84. with disabling it here, or forcing it to use the fd_set provided by your
  85. OS, via the next question. I highly recommend keeping it in.
  86.  
  87. Enable select backend (y/n)? [y] y
  88.  
  89. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  90.  
  91.  
  92. The select backend can operate in two modes. One uses the system-provided
  93. fd_set and is usually limited to 1024 file descriptors (64 on windows),
  94. the other requires your header files to define NFDBITS and declare a
  95. suitable fd_mask type. If you run into problems compiling ev_select.c, you
  96. can try forcing the use of the system fd_set here.
  97.  
  98. Force use of system fd_set for select backend (y/n)? [n] n
  99.  
  100. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  101.  
  102.  
  103. The second very portable backend is poll(2). It does not exist on windows
  104. and various versions of Mac OS X (and on the other versions it simply
  105. doesn't work), but works basically everywhere else. It is recommended to use
  106. the default here unless you run into compile problems in ev_poll.c.
  107.  
  108. Enable poll backend (y/n)? [y] y
  109.  
  110. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  111.  
  112.  
  113. Select and poll make it hard to write efficient servers, especially if the
  114. number of active connections is much lower than the watched ones. GNU/Linux
  115. systems have a more scalable method called "epoll", which EV can use. For
  116. this to work, both your kernel and glibc have to support epoll, but if you
  117. can compile it, the detection will be done at runtime, and EV will safely
  118. fall back to using select when epoll isn't available. If unsure, accept
  119. the default.
  120.  
  121. Enable epoll backend (y/n)? [n] n
  122.  
  123. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  124.  
  125.  
  126. Similarly to the epoll backend above, EV can take advantage of kqueue on
  127. many BSD systems. Support for kqueue will be detected at runtime, with a
  128. safe fallback to other methods when it cannot be used.
  129.  
  130. Note that kqueue is broken on most operating systems, so by default it
  131. won't be used on many platforms, but you can still create your own event
  132. loop with kqueue backend if you ask specifically for it.
  133.  
  134. Here is what we know:
  135.  
  136. NetBSD: partially working in at least 3.1 and later. Yeah! :)
  137. FreeBSD: broken on at least 6.2-STABLE, spotty in later versions,
  138. sockets *likely* work, ptys definitely don't.
  139. OpenBSD: reports indicate that it likely doesn't work
  140. (similar problems as on FreeBSD).
  141. OS X: completely, utterly broken on at least <= 10.6.
  142.  
  143. Enable kqueue backend (y/n)? [y] y
  144.  
  145. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  146.  
  147.  
  148. Similarly to the kqueue backend above, EV can take advantage of the
  149. solaris 10 event port interface. Support for event ports will be detected
  150. at runtime, with a safe fallback to other methods when it cannot be used.
  151.  
  152. Enable event port backend (y/n)? [n] n
  153.  
  154. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  155.  
  156.  
  157. EV needs the functions pthread_atfork and clock_gettime. On most systems
  158. you need some special libraries for this (such as -lrt and -lpthread). You
  159. can specify additional libraries to provide these calls (and any other
  160. required by EV) now, or accept the default.
  161.  
  162. Extra libraries for pthread_atfork and clock_gettime? [-lpthread -lrt ] -lpthread -lrt
  163.  
  164. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  165.  
  166.  
  167. A backend of a different kind is the Linux inotify(7) interface, which can
  168. be used to speed up (and reduce resource consumption) of stat watchers. If
  169. you have the include file and libc support for it, it is usually a good
  170. idea to enable it, as kernel availability is detected at runtime.
  171.  
  172. Enable inotify support (y/n)? [n] n
  173.  
  174. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  175.  
  176.  
  177. Another useful bit of functionality is the Linux eventfd, which is useful
  178. for faster signal handling (don't care) and intra-thread communications
  179. (more relevant). Kernel support for this will be probed at runtime, but
  180. your libc must contain the necessary wrapper. Glibc 2.7 and later should
  181. have this wrapper.
  182.  
  183. Enable linux eventfd support (y/n)? [n] n
  184.  
  185. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  186.  
  187.  
  188. Another sometimes useful bit of functionality is the Linux signalfd, which
  189. is useful for faster signal handling (don't care). Kernel support for
  190. this will be probed at runtime, but your libc must contain the necessary
  191. wrapper. Glibc 2.7 and later should have this wrapper.
  192.  
  193. Enable linux signalfd support (y/n)? [n] n
  194.  
  195. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  196.  
  197.  
  198. Very rarely, people want to tweak EV even more, e.g. to exclude
  199. or include certain watcher types or backends. This can be done by adding
  200. extra -D options here, or via the EV_EXTRA_DEFS environment variable.
  201.  
  202. For example, if you run into compile problems because of missing memory
  203. fences (or you just want extra performance), you can tell EV to not support
  204. smp and threads via -DEV_NO_THREADS.
  205.  
  206. Normal persons just press enter.
  207.  
  208. Any extra -D options? []
  209.  
  210. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  211.  
  212.  
  213. Checking if your kit is complete...
  214. Looks good
  215. Note (probably harmless): No library found for -lrt
  216. Writing Makefile for EV
  217. Writing MYMETA.yml and MYMETA.json
  218. cp EV/MakeMaker.pm blib/lib/EV/MakeMaker.pm
  219. cp libev/ev.pod blib/lib/EV/libev.pod
  220. cp EV/EVAPI.h blib/lib/EV/EVAPI.h
  221. cp EV.pm blib/lib/EV.pm
  222. cp libev/ev.h blib/lib/EV/ev.h
  223. /Users/gabriel/perl5/perlbrew/perls/perl-5.14.2/bin/perl /Users/gabriel/perl5/perlbrew/perls/perl-5.14.2/lib/site_perl/5.14.2/ExtUtils/xsubpp -typemap /Users/gabriel/perl5/perlbrew/perls/perl-5.14.2/lib/5.14.2/ExtUtils/typemap -typemap typemap EV.xs > EV.xsc && mv EV.xsc EV.c
  224. cc -c -Ilibev -fno-common -DPERL_DARWIN -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include -I/opt/local/include -O3 -DVERSION=\"4.11\" -DXS_VERSION=\"4.11\" "-I/Users/gabriel/perl5/perlbrew/perls/perl-5.14.2/lib/5.14.2/darwin-thread-multi-2level/CORE" -DEV_USE_MONOTONIC=1 -DEV_USE_REALTIME=0 -DEV_USE_SELECT=1 -DEV_USE_POLL=1 -DEV_USE_EPOLL=0 -DEV_USE_KQUEUE=1 -DEV_USE_PORT=0 -DEV_USE_INOTIFY=0 -DEV_USE_EVENTFD=0 -DEV_USE_SIGNALFD=0 EV.c
  225. In file included from EV.xs:35:
  226. ./libev/ev.c:470:48: warning: '/*' within block comment [-Wcomment]
  227. /*#define MIN_INTERVAL 0.00000095367431640625 /* 1/2**20, good till 2200 */
  228. ^
  229. ./libev/ev.c:1254:31: error: static declaration of 'ev_default_loop_ptr' follows non-static declaration
  230. EV_API_DECL struct ev_loop *ev_default_loop_ptr = 0; /* needs to be initialised to make it a definition ...
  231. ^
  232. libev/ev.h:554:26: note: previous definition is here
  233. extern struct ev_loop *ev_default_loop_ptr;
  234. ^
  235. In file included from EV.xs:35:
  236. In file included from ./libev/ev.c:2084:
  237. libev/ev_poll.c:110:18: warning: expression result unused [-Wunused-value]
  238. assert (("libev: poll() returned illegal result, broken BSD kernel?", p < polls + pollcnt));
  239. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  240. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  241. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  242. ^
  243. In file included from EV.xs:35:
  244. ./libev/ev.c:2504:12: warning: expression result unused [-Wunused-value]
  245. assert (("libev: watcher has invalid priority", ABSPRI (w) >= 0 && ABSPRI (w) < NUMPRI));
  246. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  247. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  248. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  249. ^
  250. In file included from EV.xs:35:
  251. ./libev/ev.c:2507:14: warning: expression result unused [-Wunused-value]
  252. assert (("libev: pending watcher not on pending queue", pendings [ABSPRI (w)][w->pending - 1].w == w));
  253. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  254. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  255. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  256. ^
  257. In file included from EV.xs:35:
  258. ./libev/ev.c:2517:16: warning: expression result unused [-Wunused-value]
  259. assert (("libev: active index mismatch in heap", ev_active (ANHE_w (heap [i])) == i));
  260. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  261. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  262. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  263. ^
  264. In file included from EV.xs:35:
  265. ./libev/ev.c:2518:16: warning: expression result unused [-Wunused-value]
  266. assert (("libev: heap condition violated", i == HEAP0 || ANHE_at (heap [HPARENT (i)]) <= ANHE_at (heap [i])));
  267. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  268. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  269. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  270. ^
  271. In file included from EV.xs:35:
  272. ./libev/ev.c:2519:16: warning: expression result unused [-Wunused-value]
  273. assert (("libev: heap at cache mismatch", ANHE_at (heap [i]) == ev_at (ANHE_w (heap [i]))));
  274. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  275. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  276. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  277. ^
  278. In file included from EV.xs:35:
  279. ./libev/ev.c:2530:16: warning: expression result unused [-Wunused-value]
  280. assert (("libev: active index mismatch", ev_active (ws [cnt]) == cnt + 1));
  281. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  282. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  283. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  284. ^
  285. In file included from EV.xs:35:
  286. ./libev/ev.c:2548:14: warning: expression result unused [-Wunused-value]
  287. assert (("libev: negative fd in fdchanges", fdchanges [i] >= 0));
  288. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  289. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  290. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  291. ^
  292. In file included from EV.xs:35:
  293. ./libev/ev.c:2555:18: warning: expression result unused [-Wunused-value]
  294. assert (("libev: inactive fd watcher on anfd list", ev_active (w) == 1));
  295. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  296. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  297. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  298. ^
  299. In file included from EV.xs:35:
  300. ./libev/ev.c:2556:18: warning: expression result unused [-Wunused-value]
  301. assert (("libev: fd mismatch between watcher and anfd", ((ev_io *)w)->fd == i));
  302. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  303. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  304. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  305. ^
  306. In file included from EV.xs:35:
  307. ./libev/ev.c:2733:24: warning: expression result unused [-Wunused-value]
  308. assert (("libev: negative ev_timer repeat value found while processing timers", w->repeat > 0.));
  309. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  310. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  311. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  312. ^
  313. In file included from EV.xs:35:
  314. ./libev/ev.c:2797:24: warning: expression result unused [-Wunused-value]
  315. assert (("libev: ev_periodic reschedule callback returned time in the past", ev_at (w) >= ev_rt_now));
  316. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  317. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  318. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  319. ^
  320. In file included from EV.xs:35:
  321. ./libev/ev.c:2936:12: warning: expression result unused [-Wunused-value]
  322. assert (("libev: ev_loop recursion during release detected", loop_done != EVBREAK_RECURSE));
  323. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  324. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  325. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  326. ^
  327. In file included from EV.xs:35:
  328. ./libev/ev.c:3056:22: warning: expression result unused [-Wunused-value]
  329. assert (("libev: pipe_w not active, but pipe not written", ev_is_active (&pipe_w)));
  330. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  331. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  332. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  333. ^
  334. In file included from EV.xs:35:
  335. ./libev/ev.c:3228:12: warning: expression result unused [-Wunused-value]
  336. assert (("libev: ev_io_start called with negative fd", fd >= 0));
  337. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  338. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  339. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  340. ^
  341. In file included from EV.xs:35:
  342. ./libev/ev.c:3229:12: warning: expression result unused [-Wunused-value]
  343. assert (("libev: ev_io_start called with illegal event mask", !(w->events & ~(EV__IOFDSET | EV_READ | EV_WRITE))));
  344. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  345. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  346. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  347. ^
  348. In file included from EV.xs:35:
  349. ./libev/ev.c:3237:34: warning: '&' within '|' [-Wbitwise-op-parentheses]
  350. fd_change (EV_A_ fd, w->events & EV__IOFDSET | EV_ANFD_REIFY);
  351. ~~~~~~~~~~^~~~~~~~~~~~~ ~
  352. ./libev/ev.c:3237:34: note: place parentheses around the '&' expression to silence this warning
  353. fd_change (EV_A_ fd, w->events & EV__IOFDSET | EV_ANFD_REIFY);
  354. ^
  355. ( )
  356. ./libev/ev.c:3250:12: warning: expression result unused [-Wunused-value]
  357. assert (("libev: ev_io_stop called with illegal fd (must stay constant after start!)", w->fd >= 0 && w->fd < anfdmax))...
  358. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  359. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  360. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  361. ^
  362. In file included from EV.xs:35:
  363. ./libev/ev.c:3270:12: warning: expression result unused [-Wunused-value]
  364. assert (("libev: ev_timer_start called with negative timer repeat value", w->repeat >= 0.));
  365. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  366. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  367. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  368. ^
  369. In file included from EV.xs:35:
  370. ./libev/ev.c:3298:14: warning: expression result unused [-Wunused-value]
  371. assert (("libev: internal timer heap corruption", ANHE_w (timers [active]) == (WT)w));
  372. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  373. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  374. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  375. ^
  376. In file included from EV.xs:35:
  377. ./libev/ev.c:3360:16: warning: expression result unused [-Wunused-value]
  378. assert (("libev: ev_periodic_start called with negative interval value", w->interval >= 0.));
  379. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  380. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  381. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  382. ^
  383. In file included from EV.xs:35:
  384. ./libev/ev.c:3392:14: warning: expression result unused [-Wunused-value]
  385. assert (("libev: internal periodic heap corruption", ANHE_w (periodics [active]) == (WT)w));
  386. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  387. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  388. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  389. ^
  390. In file included from EV.xs:35:
  391. ./libev/ev.c:3429:12: warning: expression result unused [-Wunused-value]
  392. assert (("libev: ev_signal_start called with illegal signal number", w->signum > 0 && w->signum < EV_NSIG));
  393. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  394. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  395. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  396. ^
  397. In file included from EV.xs:35:
  398. ./libev/ev.c:3432:12: warning: expression result unused [-Wunused-value]
  399. assert (("libev: a signal must not be attached to two different loops",
  400. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  401. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  402. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  403. ^
  404. In file included from EV.xs:35:
  405. ./libev/ev.c:3549:12: warning: expression result unused [-Wunused-value]
  406. assert (("libev: child watchers are only supported in the default loop", loop == ev_default_loop_ptr));
  407. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  408. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  409. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  410. ^
  411. In file included from EV.xs:35:
  412. ./libev/ev.c:4119:14: warning: expression result unused [-Wunused-value]
  413. assert (("libev: loop to be embedded is not embeddable", backend & ev_embeddable_backends ()));
  414. ~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  415. /usr/include/assert.h:93:25: note: expanded from macro 'assert'
  416. (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0)
  417. ^
  418. 27 warnings and 1 error generated.
  419. make: *** [EV.o] Error 1
  420. MLEHMANN/EV-4.11.tar.gz
  421. /usr/bin/make -- NOT OK
  422. Running make test
  423. Can't test without successful make
  424. Running make install
  425. Make had returned bad status, install seems impossible
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement