You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.
Current master appears to be compiled with EV_MULTIPLICITY and that breaks add-ons at run-time because node-waf passes EV_MULTIPLICITY=0 to g++.
I say at run-time because the add-on compiles fine but crashes when it invokes an ev_*() function that expects a loop pointer as its first argument, like ev_io_start() (it interprets the watcher object as a loop object).
The text was updated successfully, but these errors were encountered:
I think I may be running into this issue as well with node-ncurses, although commenting out my calls to fcntl() doesn't help any in my case. Is there a fix for this we can apply, or at least some kind of ifdef blocks to make it work for both node 0.4.x and 0.5.x?
Current master appears to be compiled with EV_MULTIPLICITY and that breaks add-ons at run-time because
node-waf
passesEV_MULTIPLICITY=0
tog++
.I say at run-time because the add-on compiles fine but crashes when it invokes an ev_*() function that expects a loop pointer as its first argument, like
ev_io_start()
(it interprets the watcher object as a loop object).The text was updated successfully, but these errors were encountered: