On Mon, May 7, 2012 at 2:25 PM, Anand George <[email protected]> wrote: > Hi > > Have installed serialport using Node v0.7.8 on Ubuntu 10.04. > > When running the tests I get an error > > Error: /home/anand/node-serialport/build/default/serialport_native.node: > undefined symbol: ev_rt_now. > > Thanks
That probably means node-serialport isn't compatible with newer versions of node.js. This particular issue is relatively straightforward to fix: instead of ev_rt_now, use uv_hrtime(). -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" 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/nodejs?hl=en?hl=en
