|
Boost Testing : |
From: John Maddock (john_at_[hidden])
Date: 2006-03-13 06:17:08
> and compiles everything - but the test programs fail to link with the
> message
>
> LINK : fatal error LNK1104: cannot open file
> 'libboost_serialization-vc71-mt-gd-1_34.lib'
>
> while I expect it to searchor
> 'libboost_serialization-vc71-mt-gdp-1_34.lib
> What am I missing here?
The most likely explanation is that you are not in fact getting STLport
injected into your compilers include path, so the auto-link code think's
it's really seeing a vanilla MSVC install. Try building with the -d2 switch
so you can see the actual command lines.
John.