Re: [Boost-users] boost::thread, boost::bind, and member functions
GAH! No change. My %LIB% is now C:\STLport-4.6.2\lib;C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\Lib\ My %INCLUDE% is now C:\STLport-4.6.2\stlport;C:\Program Files\Microsoft Visual Studio .NET 2003\SDK\v1.1\include\ My rebuilds have been starting with copying dlls and libs to /Boost, so I blew away the bin directory and the target /Boost directory and watched it rebuild each. I checked a few of the other boost dlls as well, they basically have the same dependencies.
From: GoochRules!
Reply-To: boost-users@lists.boost.org To: boost-users@lists.boost.org Subject: Re: [Boost-users] boost::thread, boost::bind, and member functions Date: Tue, 25 May 2004 20:10:26 -0600 Sure enough, running depends on the boost dll shows MSVCP71D.DLL, MSVCR71D.DLL and KERNEL32.DLL, but no STLPORT!
To me it looks like your STLport include/lib directories come after the Platform SDK/VS.Net2003 directories, which means STLport is not being used at all, hence it is not listed in the dependencies.
Try: set INCLUDE=$STLport_include_path;%INCLUDE% set LIB=$STLport_lib_path;%LIB%
--mpeltzer
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
_________________________________________________________________ Stop worrying about overloading your inbox - get MSN Hotmail Extra Storage! http://join.msn.click-url.com/go/onm00200362ave/direct/01/
participants (1)
-
Mike Feldmeier