On Tue, Apr 14, 2009 at 11:15 AM, Vladimir Prus <vladimir@codesourcery.com> wrote:
Paul Heil wrote:

> I'm compiling Boost 1.38 with STLPort 5.2.1 using Microsoft Visual Studio
> 9.0 under Windows XP SP3 for Windows Mobile 5 (ARMV4I). However, none of my
> Boost libraries have the "p" tag (e.g. boost_signals-vc90-mt-gdp-1_38.lib).
> So, when I go to link my applications against the Boost libraries, I get
> linker errors that the correct library (with the "p" tag) cannot be found.
>
> My compile command is:
> C:\boost\boost_1_38>bjam -a --without-mpi --without-python -j 2
> --toolset=msvc-9.0~wm5~stlport5.2 --stdlib=stlport-5.2~evc9~arm
> --build-type=complete stage

> Can anybody suggest what I may be doing wrong?

Remove "--" before 'stdlib' -- the command line above is not actually
building with stlport. You can also remove '--' before
'toolset' to reduce confusion

- Volodya


_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost-build

That was exactly the problem. Thanks for the help.

-PaulH