unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* --enable-maintainer-mode
@ 2003-07-23 11:20 Andreas Schwab
  2003-07-24 19:58 ` --enable-maintainer-mode Richard Stallman
  0 siblings, 1 reply; 8+ messages in thread
From: Andreas Schwab @ 2003-07-23 11:20 UTC (permalink / raw


I have implemented --enable-maintainer-mode, which you should use instead
of MAINT=FRC to get automatic regeneration of configure and src/config.in.

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux AG, Deutschherrnstr. 15-19, D-90429 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."

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

* Re: --enable-maintainer-mode
  2003-07-23 11:20 --enable-maintainer-mode Andreas Schwab
@ 2003-07-24 19:58 ` Richard Stallman
  2003-07-25  1:33   ` --enable-maintainer-mode Miles Bader
  0 siblings, 1 reply; 8+ messages in thread
From: Richard Stallman @ 2003-07-24 19:58 UTC (permalink / raw
  Cc: emacs-devel

    I have implemented --enable-maintainer-mode, which you should use instead
    of MAINT=FRC to get automatic regeneration of configure and src/config.in.

Maybe it should also turn off __INLINE__ and -O.
That would be quite useful I think.

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

* Re: --enable-maintainer-mode
  2003-07-24 19:58 ` --enable-maintainer-mode Richard Stallman
@ 2003-07-25  1:33   ` Miles Bader
  2003-07-25  8:42     ` --enable-maintainer-mode Andreas Schwab
  0 siblings, 1 reply; 8+ messages in thread
From: Miles Bader @ 2003-07-25  1:33 UTC (permalink / raw
  Cc: Andreas Schwab, emacs-devel

Richard Stallman <rms@gnu.org> writes:
>     I have implemented --enable-maintainer-mode, which you should use
>     instead of MAINT=FRC to get automatic regeneration of configure
>     and src/config.in.
> 
> Maybe it should also turn off __INLINE__ and -O.
> That would be quite useful I think.

Not by default, please, or at least provide an option to separate the
two behaviors.  I want maintainer mode turned on so I get automatic
autoconf updates, but I most certainly do not want -O and inlining
turned off.  Sure optimized code is occasionally annoying when debugging
-- but really only occasionally, and I'm quite used to dealing with it.

-Miles
-- 
`To alcohol!  The cause of, and solution to,
 all of life's problems' --Homer J. Simpson

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

* Re: --enable-maintainer-mode
  2003-07-25  1:33   ` --enable-maintainer-mode Miles Bader
@ 2003-07-25  8:42     ` Andreas Schwab
  2003-07-27 18:39       ` --enable-maintainer-mode Richard Stallman
  0 siblings, 1 reply; 8+ messages in thread
From: Andreas Schwab @ 2003-07-25  8:42 UTC (permalink / raw
  Cc: rms, emacs-devel

Miles Bader <miles@lsi.nec.co.jp> writes:

|> Richard Stallman <rms@gnu.org> writes:
|> >     I have implemented --enable-maintainer-mode, which you should use
|> >     instead of MAINT=FRC to get automatic regeneration of configure
|> >     and src/config.in.
|> > 
|> > Maybe it should also turn off __INLINE__ and -O.
|> > That would be quite useful I think.
|> 
|> Not by default, please, or at least provide an option to separate the
|> two behaviors.

I second that.  Plus, there is already such an option:

./configure CFLAGS=-g

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux AG, Deutschherrnstr. 15-19, D-90429 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."

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

* Re: --enable-maintainer-mode
  2003-07-25  8:42     ` --enable-maintainer-mode Andreas Schwab
@ 2003-07-27 18:39       ` Richard Stallman
  2003-07-28  0:24         ` --enable-maintainer-mode Kenichi Handa
  2003-07-28  9:22         ` --enable-maintainer-mode Andreas Schwab
  0 siblings, 2 replies; 8+ messages in thread
From: Richard Stallman @ 2003-07-27 18:39 UTC (permalink / raw
  Cc: emacs-devel, miles

    I second that.  Plus, there is already such an option:

    ./configure CFLAGS=-g

That won't do the whole job; it does not turn off inlining.

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

* Re: --enable-maintainer-mode
  2003-07-27 18:39       ` --enable-maintainer-mode Richard Stallman
@ 2003-07-28  0:24         ` Kenichi Handa
  2003-07-28  9:22         ` --enable-maintainer-mode Andreas Schwab
  1 sibling, 0 replies; 8+ messages in thread
From: Kenichi Handa @ 2003-07-28  0:24 UTC (permalink / raw
  Cc: schwab, miles, emacs-devel

In article <E19gqR3-0006ha-H0@fencepost.gnu.org>, Richard Stallman <rms@gnu.org> writes:
>     I second that.  Plus, there is already such an option:
>     ./configure CFLAGS=-g

> That won't do the whole job; it does not turn off inlining.

How about this?
./configure CFLAGS='-g -fno-inline'

---
Ken'ichi HANDA
handa@m17n.org

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

* Re: --enable-maintainer-mode
  2003-07-27 18:39       ` --enable-maintainer-mode Richard Stallman
  2003-07-28  0:24         ` --enable-maintainer-mode Kenichi Handa
@ 2003-07-28  9:22         ` Andreas Schwab
  2003-07-29 15:52           ` --enable-maintainer-mode Richard Stallman
  1 sibling, 1 reply; 8+ messages in thread
From: Andreas Schwab @ 2003-07-28  9:22 UTC (permalink / raw
  Cc: emacs-devel, miles

Richard Stallman <rms@gnu.org> writes:

|>     I second that.  Plus, there is already such an option:
|> 
|>     ./configure CFLAGS=-g
|> 
|> That won't do the whole job; it does not turn off inlining.

The last time I checked, gcc does no inlining at -O0.

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux AG, Deutschherrnstr. 15-19, D-90429 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."

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

* Re: --enable-maintainer-mode
  2003-07-28  9:22         ` --enable-maintainer-mode Andreas Schwab
@ 2003-07-29 15:52           ` Richard Stallman
  0 siblings, 0 replies; 8+ messages in thread
From: Richard Stallman @ 2003-07-29 15:52 UTC (permalink / raw
  Cc: emacs-devel, miles

    The last time I checked, gcc does no inlining at -O0.

I believe I saw inlining even after I had removed the -O option.
But I will try it again.

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

end of thread, other threads:[~2003-07-29 15:52 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-07-23 11:20 --enable-maintainer-mode Andreas Schwab
2003-07-24 19:58 ` --enable-maintainer-mode Richard Stallman
2003-07-25  1:33   ` --enable-maintainer-mode Miles Bader
2003-07-25  8:42     ` --enable-maintainer-mode Andreas Schwab
2003-07-27 18:39       ` --enable-maintainer-mode Richard Stallman
2003-07-28  0:24         ` --enable-maintainer-mode Kenichi Handa
2003-07-28  9:22         ` --enable-maintainer-mode Andreas Schwab
2003-07-29 15:52           ` --enable-maintainer-mode Richard Stallman

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

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