Re: [boost] boost_signals.dll contains no symbols

2003-02-14 Thread Aleksey Chernoraenko
Douglas Gregor wrote:
On Sunday 09 February 2003 08:46 pm, Davlet Panech wrote:
 Hello,

 I just compiled build 1.29 with MS Visual C++ 6, and one of the
libraries,
 boost_signals.dll does not export any symbols (and, as a consequence, no
 corresponding .LIB file is generated). Is that normal? A library with no
 symbols is quite useless, no? Anyhow, I'm not really using the signals
 library, nor I have the time to investigate, I just thought I'd let
 somebody know, because it seems suspicous.

Thanks for reporting this. The Signals library is missing
dllimport/dllexport 
specifiers throughout. I'll try to get this fixed for 1.30.0.

Hi Doug,

We needed dynamic dll of Boost.Signals library and we fixed the
dllimport/export problem. The attached files are context diffs (diff -u)
against the current cvs state. 
Note that we had to move the slot_base's get_invocable_slot,
get_inspectable_slot and tag_type template member functions to namespace
scope because otherwise the dll would be required to provide all possible
instantiations of those.

Hope it helps you and us, :)

AC.
[EMAIL PROTECTED]
___
Unsubscribe  other changes: http://lists.boost.org/mailman/listinfo.cgi/boost



Re: [boost] boost_signals.dll contains no symbols

2003-02-14 Thread Aleksey Chernoraenko
Oops..., I am sending again, now with files 

Douglas Gregor wrote:
On Sunday 09 February 2003 08:46 pm, Davlet Panech wrote:
 Hello,

 I just compiled build 1.29 with MS Visual C++ 6, and one of the
libraries,
 boost_signals.dll does not export any symbols (and, as a consequence, no
 corresponding .LIB file is generated). Is that normal? A library with no
 symbols is quite useless, no? Anyhow, I'm not really using the signals
 library, nor I have the time to investigate, I just thought I'd let
 somebody know, because it seems suspicous.

Thanks for reporting this. The Signals library is missing
dllimport/dllexport 
specifiers throughout. I'll try to get this fixed for 1.30.0.

Hi Doug,

We needed dynamic dll of Boost.Signals library and we fixed the
dllimport/export problem. The attached files are context diffs (diff -u)
against the current cvs state. 
Note that we had to move the slot_base's get_invocable_slot,
get_inspectable_slot and tag_type template member functions to namespace
scope because otherwise the dll would be required to provide all possible
instantiations of those.

Hope it helps you and us, :)

AC.
[EMAIL PROTECTED]




trackable.diff
Description: Binary data


slot.diff
Description: Binary data


signals_common.diff
Description: Binary data


signal_base.diff
Description: Binary data


connection.diff
Description: Binary data
___
Unsubscribe  other changes: http://lists.boost.org/mailman/listinfo.cgi/boost



Re: [boost] boost_signals.dll contains no symbols

2003-02-14 Thread Douglas Gregor
On Friday 14 February 2003 03:30 am, Aleksey Chernoraenko wrote:
 Oops..., I am sending again, now with files

Would you please re-send slot.diff? It was sent as quoted-printable and 
ended up mangled on my end. Oddly enough, the others were perfectly fine.

Thanks for doing this!

Doug
___
Unsubscribe  other changes: http://lists.boost.org/mailman/listinfo.cgi/boost



Re: [boost] boost_signals.dll contains no symbols

2003-02-14 Thread Douglas Gregor
On Friday 14 February 2003 11:52 am, Douglas Gregor wrote:
 On Friday 14 February 2003 03:30 am, Aleksey Chernoraenko wrote:
  Oops..., I am sending again, now with files

 Would you please re-send slot.diff? It was sent as quoted-printable and
 ended up mangled on my end. Oddly enough, the others were perfectly fine.

Please ignore this. I was able to get it from the archives. Thanks again for 
the patch.

Doug
___
Unsubscribe  other changes: http://lists.boost.org/mailman/listinfo.cgi/boost



RE: [boost] boost_signals.dll contains no symbols

2003-02-14 Thread Aleksey Chernoraenko
Hi Doug,

Sorry, I forgot about these dependencies. Actually we are using the makefile
where BOOST_SIGNALS_STATIC_LINK is defined. 
There is another related issue. We would like to have automatic library
selection feature. This hides the details about which DLL to link to from
the users (regex library does the same thing). For this reason we made
header file and a few changes to include it. This header defines the naming
scheme based on compiler options and contains the lib specifier (#pragma
comment) that allows to pass the library name to the linker.

Unfortunately, I don't know bjam well to build the libraries and DLLs which
file names will correspond to chosen naming scheme. 
By the way the regex's Jamfile cannot produce the files corresponding to
it's naming scheme. Maybe it is impossible in bjam system?

If you want I send the header and the needed changes.

AC.
[EMAIL PROTECTED]

-Original Message-
From: Douglas Gregor [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 14, 2003 11:08 AM
To: Aleksey Chernoraenko
Subject: Re: [boost] boost_signals.dll contains no symbols


Hello Aleksey,
  You'll have to excuse my ignorance on the subject of DLLs. I'm accustomed
to 
Unix, where there is no notion of import/export and everything just
magically 
works.
  Did you also have a Jamfile patch? I'm assuming that I need to define 
BOOST_SIGNALS_STATIC_LINK when building a static version of the library, but

not define anything when building a dynamic version of the library (?).

Doug


On Friday 14 February 2003 03:12 am, Aleksey Chernoraenko wrote:
 Douglas Gregor wrote:
 On Sunday 09 February 2003 08:46 pm, Davlet Panech wrote:
  Hello,
 
  I just compiled build 1.29 with MS Visual C++ 6, and one of the

 libraries,

  boost_signals.dll does not export any symbols (and, as a consequence,
no
  corresponding .LIB file is generated). Is that normal? A library with
no
  symbols is quite useless, no? Anyhow, I'm not really using the signals
  library, nor I have the time to investigate, I just thought I'd let
  somebody know, because it seems suspicous.
 
 Thanks for reporting this. The Signals library is missing

 dllimport/dllexport

 specifiers throughout. I'll try to get this fixed for 1.30.0.

 Hi Doug,

 We needed dynamic dll of Boost.Signals library and we fixed the
 dllimport/export problem. The attached files are context diffs (diff -u)
 against the current cvs state.
 Note that we had to move the slot_base's get_invocable_slot,
 get_inspectable_slot and tag_type template member functions to
 namespace scope because otherwise the dll would be required to provide all
 possible instantiations of those.

 Hope it helps you and us, :)

 AC.
 [EMAIL PROTECTED]
 ___
 Unsubscribe  other changes:
 http://lists.boost.org/mailman/listinfo.cgi/boost
___
Unsubscribe  other changes: http://lists.boost.org/mailman/listinfo.cgi/boost



RE: [boost] boost_signals.dll contains no symbols

2003-02-14 Thread Rene Rivera
[2003-02-14] Aleksey Chernoraenko wrote:

Hi Doug,

Sorry, I forgot about these dependencies. Actually we are using the
makefile
where BOOST_SIGNALS_STATIC_LINK is defined. 
There is another related issue. We would like to have automatic library
selection feature. This hides the details about which DLL to link to from
the users (regex library does the same thing). For this reason we made
header file and a few changes to include it. This header defines the naming
scheme based on compiler options and contains the lib specifier (#pragma
comment) that allows to pass the library name to the linker.

Unfortunately, I don't know bjam well to build the libraries and DLLs which
file names will correspond to chosen naming scheme. 
By the way the regex's Jamfile cannot produce the files corresponding to
it's naming scheme. Maybe it is impossible in bjam system?

Nothing is impossible ;-)

In the case of regex it's possible as long as all the generated
DLLs/SOs/LIBs have the name of the library in it: boost_regex. So the same
applies to the signal library: boost_signals. You just need to find out
what the mappings from the various build variants to the names, and use a
stage rule to create the needed versions. The regex library already has a
stage rule, for example, that generates a libboost_regex_debug.so, or
boost_regex_debug.dll.

So if you could tell us what the various names of the libraries that should
be generated I can probably give you a stage rule that will generate them.

Another alternative is to declare more targets (dll ...) with the specific
names and options.

If you want I send the header and the needed changes.

Perhaps that might help. I guess the header would have the mappings from
compiler to name.


-- grafik - Don't Assume Anything
-- [EMAIL PROTECTED] - [EMAIL PROTECTED]
-- 102708583@icq
___
Unsubscribe  other changes: http://lists.boost.org/mailman/listinfo.cgi/boost



RE: [boost] boost_signals.dll contains no symbols

2003-02-14 Thread Aleksey Chernoraenko
Rene Rivera wrote:
Hi Doug,

Sorry, I forgot about these dependencies. Actually we are using the
makefile
where BOOST_SIGNALS_STATIC_LINK is defined. 
There is another related issue. We would like to have automatic library
selection feature. This hides the details about which DLL to link to from
the users (regex library does the same thing). For this reason we made
header file and a few changes to include it. This header defines the
naming
scheme based on compiler options and contains the lib specifier (#pragma
comment) that allows to pass the library name to the linker.

Unfortunately, I don't know bjam well to build the libraries and DLLs
which
file names will correspond to chosen naming scheme. 
By the way the regex's Jamfile cannot produce the files corresponding to
it's naming scheme. Maybe it is impossible in bjam system?

Nothing is impossible ;-)


It great that bjam can do anything I will look at it more carefully.
Anyway I am sending the header file, changes and makefile. 


So if you could tell us what the various names of the libraries that should
be generated I can probably give you a stage rule that will generate them.

Another alternative is to declare more targets (dll ...) with the specific
names and options.

If you want I send the header and the needed changes.

Perhaps that might help. I guess the header would have the mappings from
compiler to name.




signals_common.diff2
Description: Binary data


signals_library_include.hpp
Description: Binary data


vc6-stlport.mak
Description: Binary data
___
Unsubscribe  other changes: http://lists.boost.org/mailman/listinfo.cgi/boost