Hi:
I’m trying to link on windows with boost_date time.
The build can not find the file:
'libboost_date_time-vc90-mt-s-1_41.lib'
This file does not exist.
Any one know what the problem is?
Chers
Sean.
If the file doesn't exist on your hard-disk, maybe you didn't build
this lib? Build it with bjam, like this:
bjam variant=release link=static runtime-link=static threading=multi
--with-date_time stage
(the toolset will be choosen automatically, or specify it explicitly)
_______________________________________________
Boost-users mailing list
Boost...@lists.boost.org
http://lists.boost.org/mailman/listinfo.cgi/boost-users
From: boost-use...@lists.boost.org
[mailto:boost-use...@lists.boost.org] On Behalf Of Sean Farrow
Sent: Monday, November 23, 2009 6:05 PM
To: boost...@lists.boost.org
Subject: [Boost-users] issues when trying to link with boost_datetime
Importance: High
Maybe
1 You haven’t built the library, for example, to somewhere /lib/stage. For me it’s I:\boost_1_41_0\stage\lib. Check there first?
2 You haven’t added the path to the libraries in Tools options, VC directories, library, browse to find the \lib
3 You haven’t built the static library(s) – the simple build library doesn’t do this – and doesn’t warn you (to be corrected soon).
HTH
Paul