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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What's the C++ STL library name on AIX

Status
Not open for further replies.

modemer

Technical User
Feb 16, 2005
22
US
Question as subject, any help would be appreciated.
 
Are you asking for the package name? For which C++ compiler?
Typically STL is part of the libstdc++ package, no?

Each libaray in the STL will be just the name of the library (i.e. Vector is in [green]<vector>[/green]).

Ir perhaps you mean namespace, in which case all the STL objects are in [green]namespace std[/green].

I hope I answered whichever question you were looking for.
 
Sorry for unclear question. I think libstdc++ is what I want to know. If this is C++ library or package, where it's installed on AIX?
 
Well if AIX follows the usual Unix directory model, then include files will be somewhere in [tt]/usr/include[/tt] and the libraries will be in [tt]/usr/lib[/tt]

You can get a lot of information where things are stored by making your compiler "verbose". For example
[tt]g++ -v prog.cpp[/tt]
Will print out all the search paths and library names which are examined by default.

--
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top