[boost] build of boost 1.34.0 with STLport
hello, I downloaded the new boost 1.34 and try to build it. I found the doc of the new release have been improved a lot. But still with one thing I'm confused - with version 1.33.1, I can build the libs using VC6, VC7.1 or VC8.0 with different toolset files, and I also can use seperate toolset files if I want to build with STLport. In 1.34, I found only a msvc.jam and there's no STLport counterpart. Can anybody give me an explanation on this and tell me how to make a STLport build? I'm using MSVC7.1 on Windows XP. Thanks in advance. -------------- LoadCom 2007-06-16
Please check this thread
http://lists.boost.org/boost-users/2007/04/26818.php
It concern to gcc, but I think it valid for msvc toolset also.
some initial steps:
1. You should modify user-config.jam by adding:
"
using stlport
: 5.1.0
: "[here path to stlport includes]"
"[here path to stlport libs]" ;
"
2. invoke bjam
"bjam stdlib=stlport --toolset=msvc"
HTH,
Sergey
2007/6/16, LoadCom
hello,
I downloaded the new boost 1.34 and try to build it. I found the doc of the new release have been improved a lot. But still with one thing I'm confused - with version 1.33.1, I can build the libs using VC6, VC7.1 or VC8.0 with different toolset files, and I also can use seperate toolset files if I want to build with STLport. In 1.34, I found only a msvc.jamand there's no STLport counterpart.
Can anybody give me an explanation on this and tell me how to make a STLport build?
I'm using MSVC7.1 on Windows XP.
Thanks in advance.
-------------- LoadCom 2007-06-16
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
participants (2)
-
LoadCom
-
Sergey Nikulov