Help to Install STLPort in VC6
- by Yan Cheng CHEOK
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.