public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* multiple definitions of 'xxx keyed to...' in egcs-1.1.1
@ 1999-01-21  0:36 Steinar Bang
  1999-01-21  2:44 ` Steinar Bang
  1999-01-31 23:58 ` Steinar Bang
  0 siblings, 2 replies; 235+ messages in thread
From: Steinar Bang @ 1999-01-21  0:36 UTC (permalink / raw)
  To: egcs

Platform: linux S.u.S.E. 5.3, egcs 1.1.1

I'm getting messages of the following type:
	.obj/debug/exvirtualprice.o: In function `global constructors keyed to list<KMenuElement *, __default_alloc_template<false, 0> >::global destructors keyed to clear(void)':
	/home/sb/apps/include/g++/stl_list.h:304: multiple definition of `global constructors keyed to list<KMenuElement *, __default_alloc_template<false, 0> >::global destructors keyed to clear(void)'
	.obj/debug/exprimitiveprice.o:/home/sb/apps/include/g++/stl_list.h:304: first defined here
	collect2: ld returned 1 exit status
when linking some (not all) of my shared libraries.

I can't remember having seen any of these with egcs 1.0.3.  

Searches on Alta Vista for this problem found no meaningful responses,
searches on Deja News for "egcs & multiple & definition & keyed" gave
me two persons with the same problem on linux, in october last year
(and one "article unavailable"), but no responses.

I got a response from one of the two today, and he lost the problem by 
rewriting all of the code that used STL.  Then the problem
mysteriously went away.

Not a good sign...

I'll isolate a test case if I can.

^ permalink raw reply	[flat|nested] 235+ messages in thread
[parent not found: <m106Duw-000396C@ocean.lucon.org>]
* Re: multiple definitions of 'xxx keyed to...' in egcs-1.1.1
@ 1999-01-29 17:26 H.J. Lu
  1999-01-30 12:51 ` Alexandre Oliva
  0 siblings, 1 reply; 235+ messages in thread
From: H.J. Lu @ 1999-01-29 17:26 UTC (permalink / raw)
  To: sb; +Cc: egcs

Hi,

I have no idea if this patch is correct. But it works for me. gcc
seems to pick a poor choice of function name for global constructors
and destructors. It may not be unique across files.

Thanks.

H.J.
----
Fri Jan 29 17:15:59 1999  H.J. Lu  (hjl@gnu.org)

	* decl2.c (start_objects): Make global constructors and
	destructors unique.


--- ../../../../import/egcs-1.1.1/egcs/gcc/cp/decl2.c	Mon Nov  9 01:32:04 1998
+++ ./decl2.c	Fri Jan 29 17:18:18 1999
@@ -2943,6 +2943,12 @@ start_objects (method_type)
 					NULL_TREE),
 		  NULL_TREE, 0);
 
+  /* It is a file scope function. */
+  if (flag_weak)
+    make_decl_one_only (current_function_decl);
+  else
+    TREE_PUBLIC (current_function_decl) = 0;
+
   store_parm_decls ();
   pushlevel (0);
   clear_last_expr ();



--
Forwarded message:

^ permalink raw reply	[flat|nested] 235+ messages in thread
* Re: multiple definitions of 'xxx keyed to...' in egcs-1.1.1
@ 1999-01-29 20:09 H.J. Lu
  0 siblings, 0 replies; 235+ messages in thread
From: H.J. Lu @ 1999-01-29 20:09 UTC (permalink / raw)
  To: sb; +Cc: egcs

> 
> Hi,
> 
> I have no idea if this patch is correct. But it works for me. gcc
> seems to pick a poor choice of function name for global constructors
> and destructors. It may not be unique across files.
> 
> Thanks.
> 
> H.J.
> ----
> Fri Jan 29 17:15:59 1999  H.J. Lu  (hjl@gnu.org)
> 
> 	* decl2.c (start_objects): Make global constructors and
> 	destructors unique.
> 
> 
> --- ../../../../import/egcs-1.1.1/egcs/gcc/cp/decl2.c	Mon Nov  9 01:32:04 1998
> +++ ./decl2.c	Fri Jan 29 17:18:18 1999
> @@ -2943,6 +2943,12 @@ start_objects (method_type)
>  					NULL_TREE),
>  		  NULL_TREE, 0);
>  
> +  /* It is a file scope function. */
> +  if (flag_weak)
> +    make_decl_one_only (current_function_decl);
> +  else
> +    TREE_PUBLIC (current_function_decl) = 0;
> +
>    store_parm_decls ();
>    pushlevel (0);
>    clear_last_expr ();
> 

The patch above is incorrect. The patch ennclosed here only works
when ASM_OUTPUT_CONSTRUCTOR and ASM_OUTPUT_DESTRUCTOR are defined.
It should cover all ELF systems, including Linux. For othe systems,
gcc has to come up with a way to generate a unique global function
name for every single call,  from all existing/future egcs binaries,
to get_file_function_name (). I saw the egcs in CVS try to do that.
I'd like to see it in egcs 1.1.2. My patch here makes the C++ file
scope constructors/destructors safe on ELF systems. It should work
in egcs 1.1.1 also.

Thanks.

H.J.
----
Fri Jan 29 19:02:50 1999  H.J. Lu  (hjl@gnu.org)

	* decl2.c (start_objects): Make file scope constructors and
	destructors local to the file if ASM_OUTPUT_CONSTRUCTOR and
	ASM_OUTPUT_DESTRUCTOR are defined.

--- ../../../../import/egcs/gcc/cp/decl2.c	Tue Nov 10 07:44:01 1998
+++ ./decl2.c	Fri Jan 29 19:58:34 1999
@@ -2943,6 +2943,11 @@ start_objects (method_type)
 					NULL_TREE),
 		  NULL_TREE, 0);
 
+#if defined(ASM_OUTPUT_CONSTRUCTOR) && defined(ASM_OUTPUT_DESTRUCTOR)
+  /* It can be a static function with .ctors/.dtors sections. */
+  TREE_PUBLIC (current_function_decl) = 0;
+#endif
+
   store_parm_decls ();
   pushlevel (0);
   clear_last_expr ();

^ permalink raw reply	[flat|nested] 235+ messages in thread
* Re: multiple definitions of 'xxx keyed to...' in egcs-1.1.1
@ 1999-02-22 16:28 Mike Stump
  1999-02-28 22:53 ` Mike Stump
  0 siblings, 1 reply; 235+ messages in thread
From: Mike Stump @ 1999-02-22 16:28 UTC (permalink / raw)
  To: kamil, martin; +Cc: egcs

> Date: Sun, 21 Feb 1999 12:04:24 +0100 (EET)
> From: Kamil Iskra <kamil@dwd.interkom.pl>
> To: "Martin v. Loewis" <martin@mira.isdn.cs.tu-berlin.de>

> I don't get it. What's so difficult about introducing a new target
> macro that conveys precisely this information?

Nothing.  Writing bad code that is poorly design and unmaintainable is
easy.  Nothing hard about it.  Unfortunately, we try and write
maintainable and well designed code.  This is where `hardness' comes
into play.

Any feature that works on one system that obscures bugs on other
systems leads to fragile software.  It is usually good to avoid
fragile software, if possible.  When it works that same exact way on
all platforms, then we win bigger.  Winning is good.

It is a delicate balance between this type of goodness and superior
codegen strategies.  (static being superior)

I haven't voiced too much of an opinion in this thread, because I am
unsure which is better.  I like that Linux catches random bugs that
others might see on other platforms.  I like fixes that once fixed,
fixes all problems on all platforms.  Adding this special new macro,
means that we can no longer have symmetry across targets.  Testing
Linux, means testing even less of the compiler.

For example, adding a cryptgraphic checksum based upon the source code
of the translation unit is better, because then it works more often on
Liinux and it works more often on all platforms.  The more that I
think of random bits (pid, time, hostname) injected into the output of
the compiler, the more I don't like it, as then binary object
comparisons don't work and some people like comparing the output of
the compiler to verify that it is working properly.  Ask how many
people like timestamps, I think most of us hate them.  If you want a
timestamp, stat it.

^ permalink raw reply	[flat|nested] 235+ messages in thread

end of thread, other threads:[~1999-02-28 22:53 UTC | newest]

Thread overview: 235+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-01-21  0:36 multiple definitions of 'xxx keyed to...' in egcs-1.1.1 Steinar Bang
1999-01-21  2:44 ` Steinar Bang
1999-01-21 23:48   ` Steinar Bang
1999-01-22  0:37     ` H.J. Lu
1999-01-22  0:42       ` Steinar Bang
1999-01-22  0:48         ` H.J. Lu
1999-01-22  1:21           ` Steinar Bang
1999-01-22  2:01             ` problem building linux specific 1.1.1 Steinar Bang
1999-01-22  8:22               ` H.J. Lu
1999-01-25  2:20                 ` Steinar Bang
1999-01-25  2:27                   ` Steinar Bang
1999-01-25  2:49                     ` Steinar Bang
1999-01-25  3:15                       ` Andreas Schwab
1999-01-25  3:49                         ` Steinar Bang
1999-01-31 23:58                           ` Steinar Bang
1999-01-31 23:58                         ` Andreas Schwab
1999-01-31 23:58                       ` Steinar Bang
1999-01-31 23:58                     ` Steinar Bang
1999-01-31 23:58                   ` Steinar Bang
1999-01-31 23:58                 ` H.J. Lu
1999-01-31 23:58               ` Steinar Bang
1999-01-22  8:27             ` multiple definitions of 'xxx keyed to...' in egcs-1.1.1 H.J. Lu
1999-01-25  1:44               ` Steinar Bang
1999-01-31 23:58                 ` Steinar Bang
1999-01-31 23:58               ` H.J. Lu
1999-01-26 10:11             ` Steinar Bang
1999-01-31 23:58               ` Steinar Bang
1999-01-31 23:58             ` Steinar Bang
1999-01-31 23:58           ` H.J. Lu
1999-01-31 23:58         ` Steinar Bang
1999-01-22  7:05       ` Andris Pavenis
1999-01-27  9:04         ` Joe Buck
1999-01-28  0:55           ` Andris Pavenis
1999-01-28  1:16             ` Steinar Bang
1999-01-29  3:54               ` Steinar Bang
1999-01-29 17:30                 ` H.J. Lu
1999-01-29 17:30               ` H.J. Lu
1999-01-29 17:58                 ` Joe Buck
1999-01-29 18:30                   ` Jeffrey A Law
1999-01-30  2:50                     ` Andris Pavenis
1999-01-30 17:37                     ` Joe Buck
1999-01-31 23:58                       ` Joe Buck
1999-01-30  1:50               ` Andris Pavenis
1999-02-01  2:19                 ` Steinar Bang
1999-02-28 22:53                   ` Steinar Bang
1999-01-31 23:58               ` Steinar Bang
1999-01-31 23:58             ` Andris Pavenis
1999-01-29 17:30           ` H.J. Lu
1999-01-30 15:50             ` craig
1999-01-31 12:21               ` H.J. Lu
1999-02-01  4:48                 ` craig
1999-02-28 22:53                   ` craig
1999-01-31 23:58               ` craig
1999-01-31 23:58           ` Joe Buck
1999-01-31 23:58         ` Andris Pavenis
1999-01-31 23:58       ` H.J. Lu
1999-01-31 23:58     ` Steinar Bang
1999-01-31 23:58   ` Steinar Bang
1999-01-31 23:58 ` Steinar Bang
     [not found] <m106Duw-000396C@ocean.lucon.org>
1999-01-29 17:26 ` Steinar Bang
1999-01-29 17:26 H.J. Lu
1999-01-30 12:51 ` Alexandre Oliva
1999-01-30 13:44   ` H.J. Lu
1999-01-30 18:38     ` Jeffrey A Law
1999-01-31  9:28       ` H.J. Lu
1999-01-31 23:58         ` Martin v. Loewis
1999-02-01  7:02           ` H.J. Lu
     [not found]             ` < m107Krt-00038sC@ocean.lucon.org >
1999-02-01 15:22               ` Martin v. Loewis
     [not found]                 ` < 199902012314.AAA00681@mira.isdn.cs.tu-berlin.de >
1999-02-02  7:12                   ` H.J. Lu
     [not found]                     ` < m107hUo-000392C@ocean.lucon.org >
1999-02-02 14:22                       ` Martin v. Loewis
     [not found]                         ` < 199902022216.XAA01250@mira.isdn.cs.tu-berlin.de >
1999-02-04  6:36                           ` H.J. Lu
     [not found]                             ` < m108PtF-00038sC@ocean.lucon.org >
1999-02-13 11:26                               ` Jeffrey A Law
     [not found]                                 ` < 12451.918933918@hurl.cygnus.com >
1999-02-13 12:13                                   ` Martin v. Loewis
     [not found]                                     ` < 199902132010.VAA04139@mira.isdn.cs.tu-berlin.de >
1999-02-13 15:16                                       ` H.J. Lu
     [not found]                                         ` < m10BoHn-000392C@ocean.lucon.org >
1999-02-13 15:21                                           ` Jeffrey A Law
     [not found]                                             ` < 13364.918948012@hurl.cygnus.com >
1999-02-13 15:41                                               ` H.J. Lu
     [not found]                                                 ` < m10Boh4-000392C@ocean.lucon.org >
1999-02-13 21:42                                                   ` Jeffrey A Law
     [not found]                                                     ` < 13959.918970867@hurl.cygnus.com >
1999-02-15 17:00                                                       ` H.J. Lu
     [not found]                                                         ` < m10CYsJ-00038sC@ocean.lucon.org >
1999-02-15 17:46                                                           ` Mark Mitchell
     [not found]                                                             ` < 199902160149.RAA28975@adsl-206-170-148-33.dsl.pacbell.net >
1999-02-15 17:50                                                               ` H.J. Lu
     [not found]                                                                 ` < m10CZeU-00038sC@ocean.lucon.org >
1999-02-15 18:10                                                                   ` Mark Mitchell
     [not found]                                                                     ` < 199902160212.SAA29229@adsl-206-170-148-33.dsl.pacbell.net >
1999-02-17 13:39                                                                       ` Kamil Iskra
     [not found]                                                                         ` < Pine.LNX.3.96.990217221633.1697A-100000@jinks.home >
1999-02-17 13:45                                                                           ` Zack Weinberg
1999-02-28 22:53                                                                             ` Zack Weinberg
1999-02-28 22:53                                                                         ` Kamil Iskra
1999-02-28 22:53                                                                     ` Mark Mitchell
     [not found]                                                                 ` <199902160212.SAA29229.cygnus.egcs@adsl-206-170-148-33.dsl.pacbell.net>
1999-02-16 10:51                                                                   ` Jason Merrill
     [not found]                                                                     ` < u9ww1ii3mw.fsf@yorick.cygnus.com >
1999-02-16 11:29                                                                       ` Mark Mitchell
1999-02-17  0:26                                                                         ` Steinar Bang
1999-02-28 22:53                                                                           ` Steinar Bang
1999-02-28 22:53                                                                         ` Mark Mitchell
1999-02-16 23:23                                                                       ` Jeffrey A Law
1999-02-16 23:33                                                                         ` Jason Merrill
     [not found]                                                                           ` < u9iud1iiwm.fsf@yorick.cygnus.com >
1999-02-17  6:49                                                                             ` H.J. Lu
     [not found]                                                                               ` < m10D8I7-00038sC@ocean.lucon.org >
1999-02-17 11:45                                                                                 ` Jeffrey A Law
1999-02-17 12:38                                                                                   ` Jason Merrill
     [not found]                                                                                     ` < u990dwix4w.fsf@yorick.cygnus.com >
1999-02-18  6:42                                                                                       ` H.J. Lu
     [not found]                                                                                         ` < m10DUeS-00038sC@ocean.lucon.org >
1999-02-20 12:47                                                                                           ` Jeffrey A Law
     [not found]                                                                                             ` < 4798.919543586@hurl.cygnus.com >
1999-02-20 12:55                                                                                               ` H.J. Lu
     [not found]                                                                                                 ` < m10EJQj-000392C@ocean.lucon.org >
1999-02-20 12:58                                                                                                   ` Jeffrey A Law
     [not found]                                                                                                     ` < 4881.919544286@hurl.cygnus.com >
1999-02-20 13:02                                                                                                       ` H.J. Lu
     [not found]                                                                                                         ` < m10EJXX-000392C@ocean.lucon.org >
1999-02-20 13:09                                                                                                           ` Jeffrey A Law
     [not found]                                                                                                             ` < 4941.919544939@hurl.cygnus.com >
1999-02-20 13:12                                                                                                               ` H.J. Lu
1999-02-28 22:53                                                                                                                 ` H.J. Lu
1999-02-28 22:53                                                                                                                 ` Jeffrey A Law
1999-02-20 13:33                                                                                                                   ` Robert Lipe
     [not found]                                                                                                                     ` < 19990220153254.A8783@rjlhome.sco.com >
1999-02-20 14:36                                                                                                                       ` Jeffrey A Law
1999-02-28 22:53                                                                                                                         ` Jeffrey A Law
1999-02-28 22:53                                                                                                                     ` Robert Lipe
1999-02-22  0:46                                                                                                             ` Andris Pavenis
1999-02-28 22:53                                                                                                               ` Andris Pavenis
1999-02-28 22:53                                                                                                             ` Jeffrey A Law
1999-02-20 13:17                                                                                                           ` Jeffrey A Law
1999-02-28 22:53                                                                                                             ` Jeffrey A Law
1999-02-20 13:34                                                                                                           ` Mumit Khan
1999-02-28 22:53                                                                                                             ` Mumit Khan
1999-02-20 15:35                                                                                                           ` Martin v. Loewis
     [not found]                                                                                                             ` < 199902202335.AAA06542@mira.isdn.cs.tu-berlin.de >
1999-02-20 16:11                                                                                                               ` H.J. Lu
     [not found]                                                                                                                 ` < m10EMUB-000392C@ocean.lucon.org >
1999-02-21 15:15                                                                                                                   ` Jeffrey A Law
1999-02-28 22:53                                                                                                                     ` Jeffrey A Law
1999-02-28 22:53                                                                                                                 ` H.J. Lu
1999-02-28 22:53                                                                                                             ` Martin v. Loewis
1999-02-21 13:59                                                                                                         ` Jason Merrill
     [not found]                                                                                                           ` < u9vhgvfmfa.fsf@yorick.cygnus.com >
1999-02-21 15:22                                                                                                             ` Jeffrey A Law
     [not found]                                                                                                               ` < 7817.919639310@hurl.cygnus.com >
1999-02-21 15:28                                                                                                                 ` Jeffrey A Law
1999-02-28 22:53                                                                                                                   ` Jeffrey A Law
1999-02-21 16:16                                                                                                               ` Jason Merrill
     [not found]                                                                                                                 ` < u9lnhrfg3k.fsf@yorick.cygnus.com >
1999-02-21 16:40                                                                                                                   ` Jeffrey A Law
     [not found]                                                                                                                     ` < 8103.919644009@hurl.cygnus.com >
1999-02-21 17:07                                                                                                                       ` Richard Henderson
     [not found]                                                                                                                         ` < 19990221170738.A22156@cygnus.com >
1999-02-21 17:16                                                                                                                           ` Jeffrey A Law
1999-02-28 22:53                                                                                                                             ` Jeffrey A Law
1999-02-28 22:53                                                                                                                         ` Richard Henderson
1999-02-28 22:53                                                                                                                     ` Jeffrey A Law
1999-02-28 22:53                                                                                                                 ` Jason Merrill
1999-02-28 22:53                                                                                                               ` Jeffrey A Law
1999-02-28 22:53                                                                                                           ` Jason Merrill
1999-02-28 22:53                                                                                                         ` H.J. Lu
1999-02-28 22:53                                                                                                     ` Jeffrey A Law
1999-02-28 22:53                                                                                                 ` H.J. Lu
1999-02-20 12:58                                                                                               ` H.J. Lu
     [not found]                                                                                                 ` < m10EJTY-000392C@ocean.lucon.org >
1999-02-20 13:04                                                                                                   ` Jeffrey A Law
     [not found]                                                                                                     ` < 4923.919544645@hurl.cygnus.com >
1999-02-20 13:15                                                                                                       ` H.J. Lu
     [not found]                                                                                                         ` < m10EJjp-000392C@ocean.lucon.org >
1999-02-20 15:40                                                                                                           ` Martin v. Loewis
1999-02-28 22:53                                                                                                             ` Martin v. Loewis
1999-02-28 22:53                                                                                                         ` H.J. Lu
1999-02-28 22:53                                                                                                     ` Jeffrey A Law
1999-02-28 22:53                                                                                                 ` H.J. Lu
1999-02-20 12:58                                                                                               ` Zack Weinberg
     [not found]                                                                                                 ` < 199902202057.PAA22565@blastula.phys.columbia.edu >
1999-02-20 13:28                                                                                                   ` Jeffrey A Law
     [not found]                                                                                                     ` < 5066.919546022@hurl.cygnus.com >
1999-02-20 13:35                                                                                                       ` Zack Weinberg
     [not found]                                                                                                         ` < 199902202135.QAA23017@blastula.phys.columbia.edu >
1999-02-20 13:42                                                                                                           ` Jeffrey A Law
1999-02-28 22:53                                                                                                             ` Jeffrey A Law
1999-02-20 15:40                                                                                                           ` Martin v. Loewis
     [not found]                                                                                                             ` < 199902202338.AAA06546@mira.isdn.cs.tu-berlin.de >
1999-02-21  3:45                                                                                                               ` Kamil Iskra
     [not found]                                                                                                                 ` < Pine.LNX.3.96.990221120241.903C-100000@jinks.home >
1999-02-21 11:20                                                                                                                   ` Martin v. Loewis
1999-02-28 22:53                                                                                                                     ` Martin v. Loewis
1999-02-28 22:53                                                                                                                 ` Kamil Iskra
1999-02-28 22:53                                                                                                             ` Martin v. Loewis
1999-02-28 22:53                                                                                                         ` Zack Weinberg
1999-02-21 18:22                                                                                                       ` the jackal
     [not found]                                                                                                         ` < 19990221211950.B10271@diwanh.stu.rpi.edu >
1999-02-21 18:47                                                                                                           ` Jeffrey A Law
1999-02-28 22:53                                                                                                             ` Jeffrey A Law
1999-02-28 22:53                                                                                                         ` the jackal
1999-02-28 22:53                                                                                                     ` Jeffrey A Law
1999-02-22  0:40                                                                                                 ` Andris Pavenis
     [not found]                                                                                                   ` < 99022210384700.00200@hal >
1999-02-22  6:59                                                                                                     ` H.J. Lu
1999-02-24  0:18                                                                                                       ` Andris Pavenis
1999-02-28 22:53                                                                                                         ` Andris Pavenis
1999-02-28 22:53                                                                                                       ` H.J. Lu
1999-02-28 22:53                                                                                                   ` Andris Pavenis
1999-02-28 22:53                                                                                                 ` Zack Weinberg
1999-02-28 22:53                                                                                             ` Jeffrey A Law
1999-02-28 22:53                                                                                         ` H.J. Lu
1999-02-28 22:53                                                                                     ` Jason Merrill
     [not found]                                                                                   ` < 26163.919280679@hurl.cygnus.com >
1999-02-17 15:45                                                                                     ` Martin v. Loewis
     [not found]                                                                                       ` < 199902172339.AAA01000@mira.isdn.cs.tu-berlin.de >
1999-02-17 15:48                                                                                         ` Jeffrey A Law
     [not found]                                                                                           ` < 26749.919295221@hurl.cygnus.com >
1999-02-17 16:37                                                                                             ` Martin v. Loewis
1999-02-28 22:53                                                                                               ` Martin v. Loewis
1999-02-28 22:53                                                                                           ` Jeffrey A Law
1999-02-28 22:53                                                                                       ` Martin v. Loewis
1999-02-28 22:53                                                                                   ` Jeffrey A Law
1999-02-28 22:53                                                                               ` H.J. Lu
1999-02-21 20:30                                                                             ` Jeffrey A Law
1999-02-28 22:53                                                                               ` Jeffrey A Law
1999-02-28 22:53                                                                           ` Jason Merrill
1999-02-28 22:53                                                                         ` Jeffrey A Law
1999-02-28 22:53                                                                     ` Jason Merrill
1999-02-28 22:53                                                                 ` H.J. Lu
1999-02-28 22:53                                                             ` Mark Mitchell
1999-02-28 22:53                                                         ` H.J. Lu
1999-02-28 22:53                                                     ` Jeffrey A Law
1999-02-28 22:53                                                 ` H.J. Lu
1999-02-28 22:53                                             ` Jeffrey A Law
1999-02-28 22:53                                         ` H.J. Lu
1999-02-15 22:50                                       ` Jeffrey A Law
     [not found]                                         ` < 20471.919147770@hurl.cygnus.com >
1999-02-16  0:39                                           ` Martin v. Loewis
     [not found]                                             ` < 199902160838.JAA00531@mira.isdn.cs.tu-berlin.de >
1999-02-16  0:45                                               ` Jeffrey A Law
     [not found]                                                 ` < 20770.919154653@hurl.cygnus.com >
1999-02-16 14:06                                                   ` Martin v. Loewis
1999-02-28 22:53                                                     ` Martin v. Loewis
1999-02-28 22:53                                                 ` Jeffrey A Law
1999-02-16  1:04                                             ` Steinar Bang
1999-02-28 22:53                                               ` Steinar Bang
     [not found]                                             ` <20770.919154653.cygnus.egcs@hurl.cygnus.com>
1999-02-16 10:47                                               ` Jason Merrill
     [not found]                                                 ` < u9yalyi3t6.fsf@yorick.cygnus.com >
1999-02-16 10:56                                                   ` Joe Buck
1999-02-28 22:53                                                     ` Joe Buck
1999-02-16 11:19                                                   ` Jeffrey A Law
1999-02-28 22:53                                                     ` Jeffrey A Law
1999-02-28 22:53                                                 ` Jason Merrill
1999-02-28 22:53                                             ` Martin v. Loewis
1999-02-16  6:57                                           ` H.J. Lu
1999-02-28 22:53                                             ` H.J. Lu
1999-02-28 22:53                                         ` Jeffrey A Law
1999-02-28 22:53                                     ` Martin v. Loewis
     [not found]                                 ` <199902132010.VAA04139.cygnus.egcs@mira.isdn.cs.tu-berlin.de>
1999-02-14 21:44                                   ` Jason Merrill
     [not found]                                     ` < u9btiwjk5k.fsf@yorick.cygnus.com >
1999-02-15 17:43                                       ` H.J. Lu
1999-02-28 22:53                                         ` H.J. Lu
1999-02-28 22:53                                     ` Jason Merrill
1999-02-28 22:53                                 ` Jeffrey A Law
1999-02-28 22:53                             ` H.J. Lu
1999-02-28 22:53                         ` Martin v. Loewis
1999-02-28 22:53                     ` H.J. Lu
1999-02-13 11:25                   ` Jeffrey A Law
     [not found]                     ` < 12441.918933847@hurl.cygnus.com >
1999-02-13 12:08                       ` Martin v. Loewis
1999-02-28 22:53                         ` Martin v. Loewis
1999-02-28 22:53                     ` Jeffrey A Law
1999-02-28 22:53                 ` Martin v. Loewis
1999-02-28 22:53             ` H.J. Lu
1999-02-01  7:03         ` James Mansion
1999-02-28 22:53           ` James Mansion
1999-01-31 23:58       ` Jeffrey A Law
1999-01-31 23:58     ` H.J. Lu
1999-01-31 23:58   ` Alexandre Oliva
1999-01-29 20:09 H.J. Lu
1999-02-22 16:28 Mike Stump
1999-02-28 22:53 ` Mike Stump

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).