I am using following node-gyp file for building a module which uses clutter 
library . The library along with other dependencies are installed in some 
other custom path . 


'OS=="linux"',
                {
                    'cflags': [
                        '<!@(pkg-config --cflags ecore glib-2.0 eina)', 
'-L/usr/custom/lib/libclutter-1.0.so'
                    ],
            'ldflags': [
                '<!@(pkg-config --libs-only-L --libs-only-other ecore glib-2.0 
eina)',  '-L/usr/custom/lib/libclutter-1.0.so'
            ],
            'libraries': [
                '<!@(pkg-config --libs-only-l ecore glib-2.0 eina)',  
'-L/usr/custom/lib/libclutter-1.0.so'
            ],
            'include_dirs': [
                '/usr/custom/include/', '/usr/custom/include/cairo/' , 
'/usr/custom/include/cogl' , '/usr/custom/include/pango-1.0/' , 
'/usr/custom/include/atk-1.0/',
                '/usr/custom/include/json-glib-1.0'
            ]
                }


The build happens properly but when i try to make a application with the 
generated node module , I get the following error :

module.js:356
  Module._extensions[extension](this, filename);
                           ^Error: /path/build/Release/module.node: undefined 
symbol: clutter_main_quit

What exactly is happening in my situation , what am i doing wrong ?



-- 
-- 
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

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to