I have a simple binding.gyp file for building my node.js extension. I want to change the linking method of the library \"mylib\" and link it statically instead of using shar
Just add the path of static .a or .so file in the "libraries" section,
"libraries": [ "/usr/local/lib/libnetfilter_queue.so.1.3.0" ]