Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. cbnatl

    Linking shared library to static library

    It is set correctly. If I do not link with the Third Party library (which is not a shared library). The library is able to load, but if I link with the static library, then the library is not found (with the same LD_LIBRARY_PATH and location).
  2. cbnatl

    What is the benefit of private struct member??!!

    In C++ a struct is essentially the same thing as a class. You can created methods for the struct, both public and private as well as public and private data. The usage allows for encapsulation in a struct. However, the main uses in C++ for a struct are for compatability with C programs and...
  3. cbnatl

    Linking shared library to static library

    I am trying to build a shared library in Solaris using Forte C++. I need to be able to link the objects to a static third party library. ex. CC -G -o mylib.so -Kpic myfile.o -lsocket -lthread -lpthread -lcurses -lthirdpartystaticlib If I use the above compiler command, it successfully builds...

Part and Inventory Search

Back
Top