unsubscribe
-----Original Message-----
From: boost-users-bounces@lists.boost.org [mailto:boost-users-bounces@lists.boost.org] On Behalf Of boost-users-request@lists.boost.org
Sent: Tuesday, 2. December 2008 3:51 AM
To: boost-users@lists.boost.org
Subject: Boost-users Digest, Vol 1831, Issue 3
Send Boost-users mailing list submissions to
boost-users@lists.boost.org
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.boost.org/mailman/listinfo.cgi/boost-users
or, via email, send a message with subject or body 'help' to
boost-users-request@lists.boost.org
You can reach the person managing the list at
boost-users-owner@lists.boost.org
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Boost-users digest..."
Today's Topics:
1. LNK2019 with boost::thread_group [!] (Joseph A. Marks)
2. new to Boost and ASIO (James Peng)
3. Re: LNK2019 with boost::thread_group [!] (Steven Watanabe)
4. Re: new to Boost and ASIO (Steven Watanabe)
5. Re: -Wundef warnings (Yang Zhang)
6. new user got compile error (James Peng)
7. Re: new user got compile error (Steven Watanabe)
8. Re: new to Boost and ASIO (boost001)
9. Re: new user got compile error (boost001)
----------------------------------------------------------------------
Message: 1
Date: Mon, 1 Dec 2008 09:59:17 -0800 (PST)
From: "Joseph A. Marks"
Subject: [Boost-users] LNK2019 with boost::thread_group [!]
To: boost-users@lists.boost.org
Message-ID: <224720.62760.qm@web32904.mail.mud.yahoo.com>
Content-Type: text/plain; charset=us-ascii
Here is what I'm trying to do:
boost::thread_group threadGroup;
for( ; port_min <= port_max; ++port_min )
{
threadGroup.add_thread(new boost::thread(boost::bind(CCUThread, port_min, strategy)));
}
I am getting the following error:
error LNK2001: unresolved external symbol "void __cdecl boost::assertion_failed(char const *,char const *,char const *,long)" (?assertion_failed@boost@@YAXPBD00J@Z)
..\bin\ccu_simulator.exe : fatal error LNK1120: 1 unresolved externals
Is this Boost-related?
I found one posting that was somewhat similar on the web, but the user found an error elsewhere, and it shed no light on the situation.
I am also getting several other LNK1120 errors that may be related to Boost.
I am converting working VS 6.0 (and occasionally 2005) code to VS 2008; this has caused this link error to appear.
I also have changed Boost from v. 1.31 to 1.36; whether this affects the above linker errors I do not know.
Any help would be appreciated.
Last time I posted about a linking error, I received no replies at all, so if someone knows something, please reply.
Thanks Again!
(-:
Sincerely,
Joseph
Joseph A. Marks
PHONE: 612-788-9658
e-mail: josephamarks@yahoo.com
------------------------------
Message: 2
Date: Mon, 1 Dec 2008 12:28:04 -0800 (PST)
From: James Peng
Subject: [Boost-users] new to Boost and ASIO
To: boost-users@lists.boost.org
Message-ID: <376665.40525.qm@web110007.mail.gq1.yahoo.com>
Content-Type: text/plain; charset="us-ascii"
just build asio, what's the next?
Do I need the entire bin.v2 folder plus the boost folder or I only need those .a files plus the boost folder.
thanks,
James