Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
[exception] is static only?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Neal Becker  
View profile   Translate to Translated (View Original)
 More options Aug 22 2012, 9:58 am
From: Neal Becker <ndbeck...@gmail.com>
Date: Wed, 22 Aug 2012 09:58:50 -0400
Local: Wed, Aug 22 2012 9:58 am
Subject: [boost] [exception] is static only?
Is it necessary that exception builds only static libs?  On many architectures,
this would limit it's usefulness.

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Emil Dotchevski  
View profile   Translate to Translated (View Original)
 More options Aug 22 2012, 2:38 pm
From: Emil Dotchevski <emildotchev...@gmail.com>
Date: Wed, 22 Aug 2012 11:38:10 -0700
Local: Wed, Aug 22 2012 2:38 pm
Subject: Re: [boost] [exception] is static only?

On Wed, Aug 22, 2012 at 6:58 AM, Neal Becker <ndbeck...@gmail.com> wrote:
> Is it necessary that exception builds only static libs?  On many
> architectures,
> this would limit it's usefulness.

Boost Exception is a header-only lib, except for the non-intrusive
exception_ptr support that is provided for some MSVC versions, which is off
by default.

Emil Dotchevski
Reverge Studios, Inc.
http://www.revergestudios.com/reblog/index.php?n=ReCode

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Neal Becker  
View profile  
 More options Aug 22 2012, 3:26 pm
From: Neal Becker <ndbeck...@gmail.com>
Date: Wed, 22 Aug 2012 15:26:33 -0400
Local: Wed, Aug 22 2012 3:26 pm
Subject: Re: [boost] [exception] is static only?

Emil Dotchevski wrote:
> On Wed, Aug 22, 2012 at 6:58 AM, Neal Becker <ndbeck...@gmail.com> wrote:

>> Is it necessary that exception builds only static libs?  On many
>> architectures,
>> this would limit it's usefulness.

> Boost Exception is a header-only lib, except for the non-intrusive
> exception_ptr support that is provided for some MSVC versions, which is off
> by default.

Then I'm confused.  When I build using:

bjam cxxflags=-march=native -sHAVE_ICU=1 -sEXPAT_INCLUDE=/usr -
sEXPAT_LIBPATH=/usr/lib64 --layout=tagged threading=single,multi link=shared
stage

on fedora 17 x86_64, I got:

  -rw-rw-r-- 1 nbecker nbecker    1662 Aug 21 10:34 libboost_exception.a
  -rw-rw-r-- 1 nbecker nbecker    1662 Aug 21 10:44 libboost_exception-mt.a

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Emil Dotchevski  
View profile   Translate to Translated (View Original)
 More options Aug 22 2012, 3:47 pm
From: Emil Dotchevski <emildotchev...@gmail.com>
Date: Wed, 22 Aug 2012 12:47:06 -0700
Local: Wed, Aug 22 2012 3:47 pm
Subject: Re: [boost] [exception] is static only?

Right, you don't need to link to this library. It's needed only if you
#define BOOST_ENABLE_NON_INTRUSIVE_EXCEPTION_PTR which you probably do not,
and certainly should not on Fedora, because the non-intrusive exception_ptr
support is currently implemented only on some versions of MSVC.

Emil Dotchevski
Reverge Studios, Inc.
http://www.revergestudios.com/reblog/index.php?n=ReCode

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Daniel Pfeifer  
View profile   Translate to Translated (View Original)
 More options Aug 23 2012, 1:17 am
From: Daniel Pfeifer <dan...@pfeifer-mail.de>
Date: Thu, 23 Aug 2012 07:17:02 +0200
Local: Thurs, Aug 23 2012 1:17 am
Subject: Re: [boost] [exception] is static only?
2012/8/22 Emil Dotchevski <emildotchev...@gmail.com>:

Does that mean that the compilation of boost_exception could/should be
disabled for compilers other than MSVC?

Cheers, Daniel

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Emil Dotchevski  
View profile   Translate to Translated (View Original)
 More options Aug 23 2012, 3:46 am
From: Emil Dotchevski <emildotchev...@gmail.com>
Date: Thu, 23 Aug 2012 00:46:37 -0700
Local: Thurs, Aug 23 2012 3:46 am
Subject: Re: [boost] [exception] is static only?
On Wed, Aug 22, 2012 at 10:17 PM, Daniel Pfeifer <dan...@pfeifer-mail.de>wrote:

> 2012/8/22 Emil Dotchevski <emildotchev...@gmail.com>:
> Does that mean that the compilation of boost_exception could/should be
> disabled for compilers other than MSVC?

That might be a good idea -- if someone knows how to setup the Jamfile
conditionally, I have no problem with that.

Thanks,
Emil Dotchevski
Reverge Studios, Inc.
http://www.revergestudios.com/reblog/index.php?n=ReCode

_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »