Help to Install STLPort in VC6

Posted by Yan Cheng CHEOK on Stack Overflow See other posts from Stack Overflow or by Yan Cheng CHEOK
Published on 2010-04-24T11:49:41Z Indexed on 2010/04/24 11:53 UTC
Read the original article Hit count: 517

Filed under:
|

I try to follow the following steps to install STLPort in VC6

1) I change C:\Program Files\Microsoft Visual Studio\VC98\Bin\VCVARS32.BAT content

set INCLUDE=%MSVCDir%\ATL\INCLUDE;%MSVCDir%\INCLUDE;%MSVCDir%\MFC\INCLUDE;%INCLUDE%
set LIB=%MSVCDir%\LIB;%MSVCDir%\MFC\LIB;%LIB%

to (The directory C:\STLport-5.2.1\lib is not exsits?)

set INCLUDE=C:\STLport-5.2.1\stlport;%MSVCDir%\ATL\INCLUDE;%MSVCDir%\INCLUDE;%MSVCDir%\MFC\INCLUDE;%INCLUDE%
set LIB=C:\STLport-5.2.1\lib;%MSVCDir%\LIB;%MSVCDir%\MFC\LIB;%LIB%

2) I

C:\>cd C:\STLport-5.2.1\build\lib
C:\STLport-5.2.1\build\lib>"c:\Program Files\Microsoft Visual Studio\VC98\bin\VCVARS32.BAT"
Setting environment for using Microsoft Visual C++ tools.
C:\STLport-5.2.1\build\lib>c:\STLport-5.2.1\configure.bat msvc6
STLport Configuration Tool for Windows

The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
Setting compiler: Microsoft Visual C++ 6.0
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.
The system cannot find the path specified.

Setting platform: Windows XP

The system cannot find the path specified.
Done configuring STLport.

Go to build/lib folder and type "nmake clean install" to build  and
install STLport to the "lib" and "bin" folders.
Go to build/test/unit folder and type nmake clean install to
build unit tests and install them in bin folder.

3) The code within configure.bat, which give me The system cannot find the path specified is

REM initially create/overwrite config.mak
echo # STLport Configuration Tool for Windows > build\Makefiles\nmake\config.mak
echo # >> build\Makefiles\nmake\config.mak
echo # config.mak generated with command line: >> build\Makefiles\nmake\config.mak
echo # configure %1 %2 %3 %4 %5 %6 %7 %8 %9 >> build\Makefiles\nmake\config.mak
echo # >> build\Makefiles\nmake\config.mak

What I shall change them to? How can I continue the build?

Thanks.

© Stack Overflow or respective owner

Related posts about vc6

Related posts about stlport