How to configure STLPort ?
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
I have downloaded & unzipped the STLport library. There are several make files found.What needs to be done , so that I can start using it. Thanks very much
The procedure differs depending on your compiler. There are several good .html docs in the /doc subdirectory of your STLPort directory. For example to build the STLPort for Visual C++ 6, you would go to a command prompt, run VCVARS32.bat to register the build evnironment variables, then run nmake /f vc6.mak clean all and watch it compile (takes a few minutes) In order to use it, you would need to set it in your include search path BEFORE any other paths which would contain another STL implementation.