Hi,
I'm using Visual Studio 9 on Windows. Up until I the inclusion of
Hi,
I'm using Visual Studio 9 on Windows. Up until I the inclusion of
, my application linked fine. Now I'm getting the following linker error: *LINK : fatal error LNK1104: cannot open file 'libboost_signals-vc90-mt-gd-1_35.lib' *
AMDG Robert Dailey wrote: * *Have you built the libraries http://www.boost.org/more/getting_started/windows.html#or-build-binaries-fro... You'll also need to add the option --build-type=complete. In Christ, Steven Watanabe
I'm a bit clueless when it comes to command line parameters. I normally just
interface with the project settings GUI, which doesn't really expose command
line options. Is there a specific setting I can toggle that controls that
command line option? Thanks.
On Feb 5, 2008 9:51 PM, Steven Watanabe
AMDG
Hi,
I'm using Visual Studio 9 on Windows. Up until I the inclusion of
, my application linked fine. Now I'm getting the following linker error: *LINK : fatal error LNK1104: cannot open file 'libboost_signals-vc90-mt-gd-1_35.lib' *
Robert Dailey wrote: * *Have you built the libraries
http://www.boost.org/more/getting_started/windows.html#or-build-binaries-fro...
You'll also need to add the option --build-type=complete.
In Christ, Steven Watanabe
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
You should just be able to include the path to the lib in the apps "properties->linker->input->Additional dependencies" field ________________________________ From: boost-users-bounces@lists.boost.org [mailto:boost-users-bounces@lists.boost.org] On Behalf Of Robert Dailey Sent: 06 February 2008 16:56 To: boost-users@lists.boost.org Subject: Re: [Boost-users] Linker error I'm a bit clueless when it comes to command line parameters. I normally just interface with the project settings GUI, which doesn't really expose command line options. Is there a specific setting I can toggle that controls that command line option? Thanks. On Feb 5, 2008 9:51 PM, Steven Watanabewrote: AMDG Robert Dailey wrote: > Hi, > > I'm using Visual Studio 9 on Windows. Up until I the inclusion of > , my application linked fine. Now I'm getting the > following linker error: > > *LINK : fatal error LNK1104: cannot open file > 'libboost_signals-vc90-mt-gd-1_35.lib' > * * *Have you built the libraries http://www.boost.org/more/getting_started/windows.html#or-build-binaries -from-source You'll also need to add the option --build-type=complete. In Christ, Steven Watanabe _______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users ______________________________________________________________________ This email has been scanned by the MessageLabs Email Security System. For more information please visit http://www.messagelabs.com/email ______________________________________________________________________ ****************************************************************************** "This message and any attachments are solely for the intended recipient and may contain confidential and privileged information. If you are not the intended recipient, any disclosure, copying, use, or distribution of the information included in this message and any attachments is prohibited. If you have received this communication in error, please notify us by reply e-mail and immediately and permanently delete this message and any attachments. Thank you." Interactive Transaction Solutions Ltd (2473364 England) Registered Office: Systems House, Station Approach Emsworth PO10 7PW ********************************************************************** Ce message �lectronique contient des informations confidentielles � l'usage unique des destinataires indiqu�s, personnes physiques ou morales. Si vous n'�tes pas le destinataire voulu, toute divulgation, copie, ou diffusion ou toute autre utilisation de ces informations, est interdite. Si vous avez re�u ce message �lectronique par erreur, nous vous remercions d'en avertir son exp�diteur imm�diatement par email et de d�truire ce message ainsi que les �l�ments attach�s. Interactive transaction Solutions SAS- France (RCS Pontoise : 489 397 877) Si�ge social : Parc Saint Christophe, 10, Avenue de l�Entreprise 95865 Cergy-Pontoise Cedex ______________________________________________________________________ This email has been scanned by the MessageLabs Email Security System. For more information please visit http://www.messagelabs.com/email ______________________________________________________________________
On Feb 5, 2008 9:51 PM, Steven Watanabe
Have you built the libraries
http://www.boost.org/more/getting_started/windows.html#or-build-binaries-fro...
You'll also need to add the option --build-type=complete.
In Christ, Steven Watanabe
Oh never mind, I see what you're saying now. That's a command line option for the bjam executable. Sorry for the confusion.
On Feb 5, 2008 9:51 PM, Steven Watanabe
Have you built the libraries
http://www.boost.org/more/getting_started/windows.html#or-build-binaries-fro...
You'll also need to add the option --build-type=complete.
Couldn't I just add the source to my project? For example, everything in "trunk/libs/signals/src"? I tried this but it still isn't working. I really don't want to build a lib, i would rather compile the source directly. Let me know if this can be done. Thanks.
On Feb 6, 2008 11:18 AM, Robert Dailey
Couldn't I just add the source to my project? For example, everything in "trunk/libs/signals/src"? I tried this but it still isn't working. I really don't want to build a lib, i would rather compile the source directly. Let me know if this can be done. Thanks.
With a little time spent searching the boost source code I managed to find the BOOST_ALL_NO_LIB define, which prevents auto-link from being engaged. Now I can build the source to resolve symbols.
participants (3)
-
Patrick Loney
-
Robert Dailey
-
Steven Watanabe