public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Re: lexicographical_compare...
@ 1999-03-19 13:56 Mike Stump
       [not found] ` < 199903192156.NAA22462@kankakee.wrs.com >
  1999-03-31 23:46 ` lexicographical_compare Mike Stump
  0 siblings, 2 replies; 8+ messages in thread
From: Mike Stump @ 1999-03-19 13:56 UTC (permalink / raw)
  To: egcs, mharrold

Sure, use -frepo.

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

* Re: lexicographical_compare...
       [not found] ` < 199903192156.NAA22462@kankakee.wrs.com >
@ 1999-03-19 14:05   ` Mike Harrold
  1999-03-31 23:46     ` lexicographical_compare Mike Harrold
  0 siblings, 1 reply; 8+ messages in thread
From: Mike Harrold @ 1999-03-19 14:05 UTC (permalink / raw)
  To: Mike Stump; +Cc: egcs

> 
> Sure, use -frepo.
> 

Thanks... where can I find info on -frepo? The info pages
for egcs don't seem to have it anywhere...

/Mike

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

* Re: lexicographical_compare...
  1999-03-19 14:05   ` lexicographical_compare Mike Harrold
@ 1999-03-31 23:46     ` Mike Harrold
  0 siblings, 0 replies; 8+ messages in thread
From: Mike Harrold @ 1999-03-31 23:46 UTC (permalink / raw)
  To: Mike Stump; +Cc: egcs

> 
> Sure, use -frepo.
> 

Thanks... where can I find info on -frepo? The info pages
for egcs don't seem to have it anywhere...

/Mike

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

* Re: lexicographical_compare...
  1999-03-19 13:56 lexicographical_compare Mike Stump
       [not found] ` < 199903192156.NAA22462@kankakee.wrs.com >
@ 1999-03-31 23:46 ` Mike Stump
  1 sibling, 0 replies; 8+ messages in thread
From: Mike Stump @ 1999-03-31 23:46 UTC (permalink / raw)
  To: egcs, mharrold

Sure, use -frepo.

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

* lexicographical_compare...
  1999-03-19  8:50 lexicographical_compare Mike Harrold
       [not found] ` < 199903191649.LAA16473@cas.org >
@ 1999-03-31 23:46 ` Mike Harrold
  1 sibling, 0 replies; 8+ messages in thread
From: Mike Harrold @ 1999-03-31 23:46 UTC (permalink / raw)
  To: egcs

Hi,

  Can anyone tell me how to prevent functions such as the one
metioned in the subject line (ie, the non-inline functions from
the STL library) from being emitted in every module? While the
linkonce thing works, it effectively doubles my compilation time.
I'm not compiling a small server here, and 2*30 minutes gets to
be frustrating as I am sure you can imagine!

Thanks,

/Mike


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

* Re: lexicographical_compare...
  1999-03-19 14:18   ` lexicographical_compare Martin v. Loewis
@ 1999-03-31 23:46     ` Martin v. Loewis
  0 siblings, 0 replies; 8+ messages in thread
From: Martin v. Loewis @ 1999-03-31 23:46 UTC (permalink / raw)
  To: mharrold; +Cc: egcs

>   Can anyone tell me how to prevent functions such as the one
> metioned in the subject line (ie, the non-inline functions from
> the STL library) from being emitted in every module?

There is a number of ways to achieve that, among them
-fno-implicit-templates and -frepo; not using the standard template
library is another way.

If you need specific help, you could try to present the specific
problem. If you feel there is a specific bug, you should prepare a
specific bug report.

Thanks for your understanding,
Martin

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

* Re: lexicographical_compare...
       [not found] ` < 199903191649.LAA16473@cas.org >
@ 1999-03-19 14:18   ` Martin v. Loewis
  1999-03-31 23:46     ` lexicographical_compare Martin v. Loewis
  0 siblings, 1 reply; 8+ messages in thread
From: Martin v. Loewis @ 1999-03-19 14:18 UTC (permalink / raw)
  To: mharrold; +Cc: egcs

>   Can anyone tell me how to prevent functions such as the one
> metioned in the subject line (ie, the non-inline functions from
> the STL library) from being emitted in every module?

There is a number of ways to achieve that, among them
-fno-implicit-templates and -frepo; not using the standard template
library is another way.

If you need specific help, you could try to present the specific
problem. If you feel there is a specific bug, you should prepare a
specific bug report.

Thanks for your understanding,
Martin

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

* lexicographical_compare...
@ 1999-03-19  8:50 Mike Harrold
       [not found] ` < 199903191649.LAA16473@cas.org >
  1999-03-31 23:46 ` lexicographical_compare Mike Harrold
  0 siblings, 2 replies; 8+ messages in thread
From: Mike Harrold @ 1999-03-19  8:50 UTC (permalink / raw)
  To: egcs

Hi,

  Can anyone tell me how to prevent functions such as the one
metioned in the subject line (ie, the non-inline functions from
the STL library) from being emitted in every module? While the
linkonce thing works, it effectively doubles my compilation time.
I'm not compiling a small server here, and 2*30 minutes gets to
be frustrating as I am sure you can imagine!

Thanks,

/Mike

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

end of thread, other threads:[~1999-03-31 23:46 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-03-19 13:56 lexicographical_compare Mike Stump
     [not found] ` < 199903192156.NAA22462@kankakee.wrs.com >
1999-03-19 14:05   ` lexicographical_compare Mike Harrold
1999-03-31 23:46     ` lexicographical_compare Mike Harrold
1999-03-31 23:46 ` lexicographical_compare Mike Stump
  -- strict thread matches above, loose matches on Subject: below --
1999-03-19  8:50 lexicographical_compare Mike Harrold
     [not found] ` < 199903191649.LAA16473@cas.org >
1999-03-19 14:18   ` lexicographical_compare Martin v. Loewis
1999-03-31 23:46     ` lexicographical_compare Martin v. Loewis
1999-03-31 23:46 ` lexicographical_compare Mike Harrold

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).