* Re: [patch] kernel/module.c (plus gratuitous rant) [not found] ` <Pine.LNX.4.10.10010241353590.1743-100000@penguin.transmeta.com> @ 2000-10-27 17:45 ` Pavel Machek 2000-10-27 20:40 ` Jeff Garzik ` (2 more replies) 0 siblings, 3 replies; 18+ messages in thread From: Pavel Machek @ 2000-10-27 17:45 UTC (permalink / raw) To: Linus Torvalds, Andrew Morton; +Cc: lkml Hi! > > if the person who sent you the -pre4 patch against module.c > > had Cc:'ed this mailing list then your kernel would do > > something useful when compiled with gcc-2.7.2.3. > > It seems that gcc-2.7.2.3 is terminally ill. I'd rather change > Documentation/Changes, and just document the fact. > > These kinds of subtle work-arounds for gcc bugs are not really acceptable, > nor is it worthwhile complaining when somebody does development with a gcc > that is _not_ broken, and doesn't notice that some random gcc bug breaks > the kernel for others. Would it be possible to keep 2.7.2.3? You still need 2.7.2.3 to reliably compile 2.0.X (and maybe even 2.2.all-but-latest?). Pavel -- I'm pavel@ucw.cz. "In my country we have almost anarchy and I don't care." Panos Katsaloulis describing me w.r.t. patents at discuss@linmodems.org - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-27 17:45 ` [patch] kernel/module.c (plus gratuitous rant) Pavel Machek @ 2000-10-27 20:40 ` Jeff Garzik 2000-10-27 21:12 ` Alan Cox 2000-10-27 20:46 ` Alan Cox 2000-10-28 1:00 ` Keith Owens 2 siblings, 1 reply; 18+ messages in thread From: Jeff Garzik @ 2000-10-27 20:40 UTC (permalink / raw) To: Pavel Machek; +Cc: Linus Torvalds, Andrew Morton, lkml Pavel Machek wrote: > Would it be possible to keep 2.7.2.3? You still need 2.7.2.3 to > reliably compile 2.0.X (and maybe even 2.2.all-but-latest?). What fails, when you use egcs-1.1.2 to build 2.0.x or early 2.2.x? Maybe they need -fno-strict-aliasing... is that what you are referring to? Regards, Jeff -- Jeff Garzik | "Mind if I drive?" -Sam Building 1024 | "Not if you don't mind me clawing at the MandrakeSoft | dash and screaming like a cheerleader." | -Max - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-27 20:40 ` Jeff Garzik @ 2000-10-27 21:12 ` Alan Cox 0 siblings, 0 replies; 18+ messages in thread From: Alan Cox @ 2000-10-27 21:12 UTC (permalink / raw) To: Jeff Garzik; +Cc: Pavel Machek, Linus Torvalds, Andrew Morton, lkml > Pavel Machek wrote: > > Would it be possible to keep 2.7.2.3? You still need 2.7.2.3 to > > reliably compile 2.0.X (and maybe even 2.2.all-but-latest?). > > What fails, when you use egcs-1.1.2 to build 2.0.x or early 2.2.x? egcs miscompiles inlined strstr. It gets combined with bad asm constraints to mean that 2.0 and earlier 2.2 will crash when fed the right (wrong ?) sequence of FPU ops to software emulate - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-27 17:45 ` [patch] kernel/module.c (plus gratuitous rant) Pavel Machek 2000-10-27 20:40 ` Jeff Garzik @ 2000-10-27 20:46 ` Alan Cox 2000-10-28 1:00 ` Keith Owens 2 siblings, 0 replies; 18+ messages in thread From: Alan Cox @ 2000-10-27 20:46 UTC (permalink / raw) To: Pavel Machek; +Cc: Linus Torvalds, Andrew Morton, lkml > Would it be possible to keep 2.7.2.3? You still need 2.7.2.3 to > reliably compile 2.0.X (and maybe even 2.2.all-but-latest?). There has only been one know egcs 1.1 build problem found in the last 9 months or so (the fpu emu one). I really dont think using egcs 1.1.2 to build 2.2 kernels is a problem. In fact its probably the default nowdays - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-27 17:45 ` [patch] kernel/module.c (plus gratuitous rant) Pavel Machek 2000-10-27 20:40 ` Jeff Garzik 2000-10-27 20:46 ` Alan Cox @ 2000-10-28 1:00 ` Keith Owens 2000-10-28 11:15 ` Dominik Kubla 2000-10-29 23:23 ` Rusty Russell 2 siblings, 2 replies; 18+ messages in thread From: Keith Owens @ 2000-10-28 1:00 UTC (permalink / raw) To: Pavel Machek; +Cc: lkml On Fri, 27 Oct 2000 19:45:13 +0200, Pavel Machek <pavel@suse.cz> wrote: >Would it be possible to keep 2.7.2.3? You still need 2.7.2.3 to >reliably compile 2.0.X (and maybe even 2.2.all-but-latest?). You can have multiple versions of gcc installed, just select the one to use when you compile the kernel. CC=gcc-2723 make 2.0 kernel CC=gcc-2723 make 2.2 kernel CC=egcs make 2.4 kernel - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-28 1:00 ` Keith Owens @ 2000-10-28 11:15 ` Dominik Kubla 2000-10-29 0:27 ` Richard Henderson 2000-10-29 23:23 ` Rusty Russell 1 sibling, 1 reply; 18+ messages in thread From: Dominik Kubla @ 2000-10-28 11:15 UTC (permalink / raw) To: Keith Owens; +Cc: Pavel Machek, lkml On Sat, Oct 28, 2000 at 12:00:43PM +1100, Keith Owens wrote: > On Fri, 27 Oct 2000 19:45:13 +0200, > Pavel Machek <pavel@suse.cz> wrote: > >Would it be possible to keep 2.7.2.3? You still need 2.7.2.3 to > >reliably compile 2.0.X (and maybe even 2.2.all-but-latest?). > > You can have multiple versions of gcc installed, just select the one to > use when you compile the kernel. > > CC=gcc-2723 make 2.0 kernel > CC=gcc-2723 make 2.2 kernel > CC=egcs make 2.4 kernel Even simpler: "gcc -V 2.7.2.3" or "gcc -V 2.95.2" or whatever... Yours, Dominik Kubla -- http://petition.eurolinux.org/index_html - No Software Patents In Europe! - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-28 11:15 ` Dominik Kubla @ 2000-10-29 0:27 ` Richard Henderson 2000-10-29 15:09 ` Dominik Kubla 0 siblings, 1 reply; 18+ messages in thread From: Richard Henderson @ 2000-10-29 0:27 UTC (permalink / raw) To: Keith Owens, Pavel Machek, lkml On Sat, Oct 28, 2000 at 01:15:58PM +0200, Dominik Kubla wrote: > Even simpler: "gcc -V 2.7.2.3" or "gcc -V 2.95.2" or whatever... Which was a nice idea, but it doesn't actually work. Changes in spec file format between versions makes this fall over. r~ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-29 0:27 ` Richard Henderson @ 2000-10-29 15:09 ` Dominik Kubla 2000-10-30 11:05 ` Peter Samuelson 0 siblings, 1 reply; 18+ messages in thread From: Dominik Kubla @ 2000-10-29 15:09 UTC (permalink / raw) To: Richard Henderson; +Cc: Keith Owens, Pavel Machek, lkml On Sat, Oct 28, 2000 at 05:27:00PM -0700, Richard Henderson wrote: > On Sat, Oct 28, 2000 at 01:15:58PM +0200, Dominik Kubla wrote: > > Even simpler: "gcc -V 2.7.2.3" or "gcc -V 2.95.2" or whatever... > > Which was a nice idea, but it doesn't actually work. Changes > in spec file format between versions makes this fall over. Wow. So much for reading the manual... well, that's considered cheating anyway, isn't it? Dominik -- http://petition.eurolinux.org/index_html - No Software Patents In Europe! - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-29 15:09 ` Dominik Kubla @ 2000-10-30 11:05 ` Peter Samuelson 2000-10-30 18:50 ` Richard Henderson 0 siblings, 1 reply; 18+ messages in thread From: Peter Samuelson @ 2000-10-30 11:05 UTC (permalink / raw) To: Richard Henderson, Keith Owens, Pavel Machek, lkml [rth] > > Which was a nice idea, but it doesn't actually work. Changes > > in spec file format between versions makes this fall over. [Dominik Kubla] > Wow. So much for reading the manual... well, that's considered > cheating anyway, isn't it? I know this was true at one time -- egcs couldn't read 2.7 spec files, or something like that. (I remember at the time thinking "so much for the great and glorious '-V' theory".) But I think it's since been fixed: $ gcc -v Reading specs from /usr/lib/gcc-lib/i386-linux/2.95.2/specs gcc version 2.95.2 20000220 (Debian GNU/Linux) $ gcc -V2.7.2.3 -v Reading specs from /usr/lib/gcc-lib/i386-linux/2.7.2.3/specs gcc driver version 2.95.2 20000220 (Debian GNU/Linux) executing gcc version 2.7.2.3 Is there more subtle breakage? Peter - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-30 11:05 ` Peter Samuelson @ 2000-10-30 18:50 ` Richard Henderson 0 siblings, 0 replies; 18+ messages in thread From: Richard Henderson @ 2000-10-30 18:50 UTC (permalink / raw) To: Peter Samuelson; +Cc: Keith Owens, Pavel Machek, lkml On Mon, Oct 30, 2000 at 05:05:43AM -0600, Peter Samuelson wrote: > But I think it's since been fixed: No. > Is there more subtle breakage? Yes. r~ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-28 1:00 ` Keith Owens 2000-10-28 11:15 ` Dominik Kubla @ 2000-10-29 23:23 ` Rusty Russell 2000-10-30 11:08 ` Peter Samuelson 1 sibling, 1 reply; 18+ messages in thread From: Rusty Russell @ 2000-10-29 23:23 UTC (permalink / raw) To: Keith Owens; +Cc: lkml In message <4309.972694843@ocs3.ocs-net> you write: > On Fri, 27 Oct 2000 19:45:13 +0200, > Pavel Machek <pavel@suse.cz> wrote: > >Would it be possible to keep 2.7.2.3? You still need 2.7.2.3 to > >reliably compile 2.0.X (and maybe even 2.2.all-but-latest?). > > You can have multiple versions of gcc installed, just select the one to > use when you compile the kernel. > > CC=gcc-2723 make 2.0 kernel > CC=gcc-2723 make 2.2 kernel > CC=egcs make 2.4 kernel No, environment doesn't override make variables by default. This works on any shell: make CC=egcs <targets> Rusty. -- Hacking time. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-29 23:23 ` Rusty Russell @ 2000-10-30 11:08 ` Peter Samuelson 2000-10-30 11:19 ` Recommended compiler? - " Linux Kernel Developer 0 siblings, 1 reply; 18+ messages in thread From: Peter Samuelson @ 2000-10-30 11:08 UTC (permalink / raw) To: Rusty Russell; +Cc: Keith Owens, lkml [Rusty] > > CC=gcc-2723 make 2.0 kernel > > CC=gcc-2723 make 2.2 kernel > > CC=egcs make 2.4 kernel > > No, environment doesn't override make variables by default. This > works on any shell: > > make CC=egcs <targets> If you're going to get pedantic, that won't work either -- since the makefiles in kernels 2.0 and 2.2 expect $(CC) to include some compiler flags. This was fixed somewhere in 2.3.3x. Peter - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Recommended compiler? - Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-30 11:08 ` Peter Samuelson @ 2000-10-30 11:19 ` Linux Kernel Developer 2000-10-30 11:58 ` Peter Samuelson 0 siblings, 1 reply; 18+ messages in thread From: Linux Kernel Developer @ 2000-10-30 11:19 UTC (permalink / raw) To: linux-kernel So which is the recommended compiler for each kernel version 2.2.x, 2.4.x(pre?) nowadays? I've pretty much kept gcc 2.7.2.3 around just for compiling the kernel however now I hear you need egcs to compile 2.4? I don't mind keeping 2.7.2.3 around in its own installation directory just for the purpose of doing kernel work however from a previous post I've now got the impression that egcs has become the recommended compiler? If I'm going to keep a secondary compiler around (outside of gcc 2.95.2 which I still hear is no good for kernel compiles) just for kernel work I'd prefer to use my disk space on the recommended one. > > [Rusty] > > > CC=gcc-2723 make 2.0 kernel > > > CC=gcc-2723 make 2.2 kernel > > > CC=egcs make 2.4 kernel > > > > No, environment doesn't override make variables by default. This > > works on any shell: > > > > make CC=egcs <targets> > > If you're going to get pedantic, that won't work either -- since the > makefiles in kernels 2.0 and 2.2 expect $(CC) to include some compiler > flags. This was fixed somewhere in 2.3.3x. > > Peter > - - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: Recommended compiler? - Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-30 11:19 ` Recommended compiler? - " Linux Kernel Developer @ 2000-10-30 11:58 ` Peter Samuelson 2000-10-30 13:49 ` Martin Dalecki 0 siblings, 1 reply; 18+ messages in thread From: Peter Samuelson @ 2000-10-30 11:58 UTC (permalink / raw) To: Linux Kernel Developer; +Cc: linux-kernel > So which is the recommended compiler for each kernel version 2.2.x, > 2.4.x(pre?) nowadays? * 2.91.66 aka egcs 1.1.2. It has been officially blessed for 2.4 and has been given an informal thumbs-up by Alan for 2.2. (It does NOT work for 2.0, if you still care about that.) * 2.7.2.3 works for 2.2 (and 2.0) but NOT for 2.4. * 2.95.2 seems to work with both 2.2 and 2.4 (no known bugs, AFAIK) and many of us use it, but it is a little riskier than egcs. * Red Hat "2.96" or CVS 2.97 will probably break any known kernel. Peter - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: Recommended compiler? - Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-30 11:58 ` Peter Samuelson @ 2000-10-30 13:49 ` Martin Dalecki 2000-10-30 20:50 ` Horst von Brand 0 siblings, 1 reply; 18+ messages in thread From: Martin Dalecki @ 2000-10-30 13:49 UTC (permalink / raw) To: Peter Samuelson; +Cc: Linux Kernel Developer, linux-kernel Peter Samuelson wrote: > > > So which is the recommended compiler for each kernel version 2.2.x, > > 2.4.x(pre?) nowadays? > > * 2.91.66 aka egcs 1.1.2. It has been officially blessed for 2.4 and > has been given an informal thumbs-up by Alan for 2.2. (It does NOT > work for 2.0, if you still care about that.) > > * 2.7.2.3 works for 2.2 (and 2.0) but NOT for 2.4. > > * 2.95.2 seems to work with both 2.2 and 2.4 (no known bugs, AFAIK) and > many of us use it, but it is a little riskier than egcs. > > * Red Hat "2.96" or CVS 2.97 will probably break any known kernel. Works fine for me and 2.4.0-test10-pre5... however there are tons of preprocessor warnings in some drivers. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: Recommended compiler? - Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-30 13:49 ` Martin Dalecki @ 2000-10-30 20:50 ` Horst von Brand 2000-10-30 22:02 ` Jakub Jelinek 2000-10-31 10:27 ` Martin Dalecki 0 siblings, 2 replies; 18+ messages in thread From: Horst von Brand @ 2000-10-30 20:50 UTC (permalink / raw) To: Martin Dalecki; +Cc: Peter Samuelson, Linux Kernel Developer, linux-kernel Martin Dalecki <dalecki@evision-ventures.com> said: > Peter Samuelson wrote: [...] > > * Red Hat "2.96" or CVS 2.97 will probably break any known kernel. > Works fine for me and 2.4.0-test10-pre5... however there are tons of > preprocessor warnings in some drivers. CVS (from 20001028 or so) gave a 2.4.0.10.6/i686 that crashed on boot, no time to dig deeper yet. -- Dr. Horst H. von Brand mailto:vonbrand@inf.utfsm.cl Departamento de Informatica Fono: +56 32 654431 Universidad Tecnica Federico Santa Maria +56 32 654239 Casilla 110-V, Valparaiso, Chile Fax: +56 32 797513 - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: Recommended compiler? - Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-30 20:50 ` Horst von Brand @ 2000-10-30 22:02 ` Jakub Jelinek 2000-10-31 10:27 ` Martin Dalecki 1 sibling, 0 replies; 18+ messages in thread From: Jakub Jelinek @ 2000-10-30 22:02 UTC (permalink / raw) To: Horst von Brand Cc: Martin Dalecki, Peter Samuelson, Linux Kernel Developer, linux-kernel On Mon, Oct 30, 2000 at 05:50:07PM -0300, Horst von Brand wrote: > Martin Dalecki <dalecki@evision-ventures.com> said: > > Peter Samuelson wrote: > > [...] > > > > * Red Hat "2.96" or CVS 2.97 will probably break any known kernel. > > > Works fine for me and 2.4.0-test10-pre5... however there are tons of > > preprocessor warnings in some drivers. > > CVS (from 20001028 or so) gave a 2.4.0.10.6/i686 that crashed on boot, no > time to dig deeper yet. CVS 2.97 is known to miscompile e.g. buffer.c. Jakub - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: Recommended compiler? - Re: [patch] kernel/module.c (plus gratuitous rant) 2000-10-30 20:50 ` Horst von Brand 2000-10-30 22:02 ` Jakub Jelinek @ 2000-10-31 10:27 ` Martin Dalecki 1 sibling, 0 replies; 18+ messages in thread From: Martin Dalecki @ 2000-10-31 10:27 UTC (permalink / raw) To: Horst von Brand; +Cc: Peter Samuelson, Linux Kernel Developer, linux-kernel Horst von Brand wrote: > > Martin Dalecki <dalecki@evision-ventures.com> said: > > Peter Samuelson wrote: > > [...] > > > > * Red Hat "2.96" or CVS 2.97 will probably break any known kernel. > > > Works fine for me and 2.4.0-test10-pre5... however there are tons of > > preprocessor warnings in some drivers. > > CVS (from 20001028 or so) gave a 2.4.0.10.6/i686 that crashed on boot, no > time to dig deeper yet. I was just using the compiler shipped by RedHat with all the fixes contained therein.... self compiled under glibc-2.1.95 on a system which some long time ago was RedHat-5.1 ;-). And it worked. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2000-10-31 9:35 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <39F5830E.7963A935@uow.edu.au>
[not found] ` <Pine.LNX.4.10.10010241353590.1743-100000@penguin.transmeta.com>
2000-10-27 17:45 ` [patch] kernel/module.c (plus gratuitous rant) Pavel Machek
2000-10-27 20:40 ` Jeff Garzik
2000-10-27 21:12 ` Alan Cox
2000-10-27 20:46 ` Alan Cox
2000-10-28 1:00 ` Keith Owens
2000-10-28 11:15 ` Dominik Kubla
2000-10-29 0:27 ` Richard Henderson
2000-10-29 15:09 ` Dominik Kubla
2000-10-30 11:05 ` Peter Samuelson
2000-10-30 18:50 ` Richard Henderson
2000-10-29 23:23 ` Rusty Russell
2000-10-30 11:08 ` Peter Samuelson
2000-10-30 11:19 ` Recommended compiler? - " Linux Kernel Developer
2000-10-30 11:58 ` Peter Samuelson
2000-10-30 13:49 ` Martin Dalecki
2000-10-30 20:50 ` Horst von Brand
2000-10-30 22:02 ` Jakub Jelinek
2000-10-31 10:27 ` Martin Dalecki
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox