obj.cxxflags = ["-g", "-D_FILE_OFFSET_BITS=64", "-D_LARGEFILE_SOURCE"]
So... what errors do you get?
I'm still using node-waf to manually compile modules -- is that the problem?
--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 nod...@googlegroups.com
To unsubscribe from this group, send email to
nodejs+un...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en
Is there yet another configuration setting that has to be informed as to what the System Preference Network Proxy setting is?
Where would this be documented? (sigh...)
Why does it appear to be downloading a .tar.gz of the version of node that is already installed?
What is the easiest way to obtain the 0.7.6 instance you mention below to get to the real error...
--
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 nod...@googlegroups.com
To unsubscribe from this group, send email to
--
What does `ldd freeling.node` say (assuming you're on Linux)?
libfreeling-3.0-alfa1.so => not found
--
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 nod...@googlegroups.com
To unsubscribe from this group, send email to
All my experience has been with static compiled modules. That's what I'm doing with node-ffi. If libfreeling offers precompiled static versions of the library for you to use, I would suggest going that route. Another such option is bundling libfreeling in your repo and compiling it during your module's build (by converting it to gyp; this is sometimes easy, sometimes hard/impossible).
Here's how node-ffi is doing it: https://github.com/rbranson/node-ffi/blob/master/binding.gyp#L25-27
Perhaps use a fully qualified reference to your class (FreeLingTokenizer::FreeLingTokenizer) ? I'm not really sure without seeing your code.