Re: how to use g++ to build shared libraries for labview in linux?

2004-03-12 Thread I have a similar problem
thks I will use your sugestion.
JP



Re: how to use g++ to build shared libraries for labview in linux?

2004-03-12 Thread David Duffey
Hi JP,

Yes you can use g++ to build shared libraries that labview can use.
You'll want to give your C++ library a C interface.  This is really
common practice.  You can do this by simply declaring functions as
'extern "C"'.  Here is a link with more information:

http://www.parashift.com/c++-faq-lite/mixing-c-and-cpp.html#faq-30.8

I've personally worked on projects that do exactly what you want to
do.



how to use g++ to build shared libraries for labview in linux?

2004-03-12 Thread I have a similar problem
does anyone knows if it's possible to compile a shared library in
linux with g++ that could be recognized by labview?
thks
JP