* "make bootstrap" fails for the latest EMACS_22_BASE head on OS X
@ 2007-07-24 18:01 Anupam Sengupta
2007-07-24 19:04 ` Dan Nicolaescu
2007-07-24 19:05 ` Stefan Monnier
0 siblings, 2 replies; 5+ messages in thread
From: Anupam Sengupta @ 2007-07-24 18:01 UTC (permalink / raw)
To: emacs-devel
Dear Emacs Gurus,
Apologies if this is the wrong list to post this message.
For the last few days (since 7/22?), I have not been able to successfully build
Carbon Emacs on OS X using the latest CVS code from the EMACS_22_BASE.
The platform I am using is PPC G4/OS X 10.4.10 I last successfully build Emacs
on 7/20/07 on the same machine.
The steps I have been following are:
(in the wd for emacs code)
$ make distclean
$ cvs update
$ ./configure --enable-carbon-app
$ make bootstrap
[..]
Compiling /Users/anupam/code/emacs/emacs/lisp/./vc-arch.el
Wrote /Users/anupam/code/emacs/emacs/lisp/vc-arch.elc
Compiling /Users/anupam/code/emacs/emacs/lisp/./vc-cvs.el
Wrote /Users/anupam/code/emacs/emacs/lisp/vc-cvs.elc
Compiling /Users/anupam/code/emacs/emacs/lisp/./vc-hg.el
In toplevel form:
vc-hg.el:295:41:Error: Lisp nesting exceeds `max-lisp-eval-depth'
make[2]: *** [compile] Error 1
make[1]: *** [bootstrap-build] Error 2
make: *** [bootstrap] Error 2
The make process fails during byte-compilation of vc-hg.el.
Thanks!
--
Anupam
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: "make bootstrap" fails for the latest EMACS_22_BASE head on OS X
2007-07-24 18:01 "make bootstrap" fails for the latest EMACS_22_BASE head on OS X Anupam Sengupta
@ 2007-07-24 19:04 ` Dan Nicolaescu
2007-07-25 3:18 ` Anupam Sengupta
2007-07-24 19:05 ` Stefan Monnier
1 sibling, 1 reply; 5+ messages in thread
From: Dan Nicolaescu @ 2007-07-24 19:04 UTC (permalink / raw)
To: Anupam Sengupta; +Cc: emacs-devel
Anupam Sengupta <anupamsg@gmail.com> writes:
> Dear Emacs Gurus,
>
> Apologies if this is the wrong list to post this message.
>
> For the last few days (since 7/22?), I have not been able to successfully build
> Carbon Emacs on OS X using the latest CVS code from the EMACS_22_BASE.
>
> The platform I am using is PPC G4/OS X 10.4.10 I last successfully build Emacs
> on 7/20/07 on the same machine.
>
> The steps I have been following are:
>
> (in the wd for emacs code)
>
> $ make distclean
> $ cvs update
> $ ./configure --enable-carbon-app
> $ make bootstrap
>
> [..]
>
> Compiling /Users/anupam/code/emacs/emacs/lisp/./vc-arch.el
> Wrote /Users/anupam/code/emacs/emacs/lisp/vc-arch.elc
> Compiling /Users/anupam/code/emacs/emacs/lisp/./vc-cvs.el
> Wrote /Users/anupam/code/emacs/emacs/lisp/vc-cvs.elc
> Compiling /Users/anupam/code/emacs/emacs/lisp/./vc-hg.el
>
> In toplevel form:
> vc-hg.el:295:41:Error: Lisp nesting exceeds `max-lisp-eval-depth'
> make[2]: *** [compile] Error 1
> make[1]: *** [bootstrap-build] Error 2
> make: *** [bootstrap] Error 2
>
> The make process fails during byte-compilation of vc-hg.el.
I checked in a fix that works around the problem, so the bootstrap
should succeed now.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: "make bootstrap" fails for the latest EMACS_22_BASE head on OS X
2007-07-24 18:01 "make bootstrap" fails for the latest EMACS_22_BASE head on OS X Anupam Sengupta
2007-07-24 19:04 ` Dan Nicolaescu
@ 2007-07-24 19:05 ` Stefan Monnier
2007-07-24 20:46 ` Dan Nicolaescu
1 sibling, 1 reply; 5+ messages in thread
From: Stefan Monnier @ 2007-07-24 19:05 UTC (permalink / raw)
To: Anupam Sengupta; +Cc: emacs-devel
> For the last few days (since 7/22?), I have not been able to successfully
> build Carbon Emacs on OS X using the latest CVS code from the
> EMACS_22_BASE.
> $ make bootstrap
[...]
> vc-hg.el:295:41:Error: Lisp nesting exceeds `max-lisp-eval-depth'
Does the patch below fix it?
Stefan
--- eval.c 24 Jul 2007 15:03:06 -0400 1.276.2.2
+++ eval.c 24 Jul 2007 15:03:27 -0400
@@ -221,7 +221,7 @@
specpdl_ptr = specpdl;
/* Don't forget to update docs (lispref node "Local Variables"). */
max_specpdl_size = 1000;
- max_lisp_eval_depth = 300;
+ max_lisp_eval_depth = 400;
Vrun_hooks = Qnil;
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: "make bootstrap" fails for the latest EMACS_22_BASE head on OS X
2007-07-24 19:05 ` Stefan Monnier
@ 2007-07-24 20:46 ` Dan Nicolaescu
0 siblings, 0 replies; 5+ messages in thread
From: Dan Nicolaescu @ 2007-07-24 20:46 UTC (permalink / raw)
To: Stefan Monnier; +Cc: Anupam Sengupta, emacs-devel
Stefan Monnier <monnier@iro.umontreal.ca> writes:
> > For the last few days (since 7/22?), I have not been able to successfully
> > build Carbon Emacs on OS X using the latest CVS code from the
> > EMACS_22_BASE.
>
> > $ make bootstrap
> [...]
> > vc-hg.el:295:41:Error: Lisp nesting exceeds `max-lisp-eval-depth'
>
> Does the patch below fix it?
Yes, it does.
>
>
> --- eval.c 24 Jul 2007 15:03:06 -0400 1.276.2.2
> +++ eval.c 24 Jul 2007 15:03:27 -0400
> @@ -221,7 +221,7 @@
> specpdl_ptr = specpdl;
> /* Don't forget to update docs (lispref node "Local Variables"). */
> max_specpdl_size = 1000;
> - max_lisp_eval_depth = 300;
> + max_lisp_eval_depth = 400;
>
> Vrun_hooks = Qnil;
> }
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: "make bootstrap" fails for the latest EMACS_22_BASE head on OS X
2007-07-24 19:04 ` Dan Nicolaescu
@ 2007-07-25 3:18 ` Anupam Sengupta
0 siblings, 0 replies; 5+ messages in thread
From: Anupam Sengupta @ 2007-07-25 3:18 UTC (permalink / raw)
To: emacs-devel
>>>>> "Dan" == Dan Nicolaescu <dann@ics.uci.edu> writes:
[...]
Anupam>> For the last few days (since 7/22?), I have not been able to
Anupam>> successfully build Carbon Emacs on OS X using the latest CVS code
Anupam>> from the EMACS_22_BASE.
Anupam>> /Users/anupam/code/emacs/emacs/lisp/vc-arch.elc Compiling
Anupam>> /Users/anupam/code/emacs/emacs/lisp/./vc-cvs.el Wrote
Anupam>> /Users/anupam/code/emacs/emacs/lisp/vc-cvs.elc Compiling
Anupam>> /Users/anupam/code/emacs/emacs/lisp/./vc-hg.el
Anupam>>
Anupam>> In toplevel form: vc-hg.el:295:41:Error: Lisp nesting exceeds
Anupam>> `max-lisp-eval-depth' make[2]: *** [compile] Error 1 make[1]: ***
Anupam>> [bootstrap-build] Error 2 make: *** [bootstrap] Error 2
Anupam>>
Anupam>> The make process fails during byte-compilation of vc-hg.el.
Dan> I checked in a fix that works around the problem, so the bootstrap
Dan> should succeed now.
Thanks Dan. The fix works fine and build completed successfully.
--
Anupam
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-07-25 3:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-24 18:01 "make bootstrap" fails for the latest EMACS_22_BASE head on OS X Anupam Sengupta
2007-07-24 19:04 ` Dan Nicolaescu
2007-07-25 3:18 ` Anupam Sengupta
2007-07-24 19:05 ` Stefan Monnier
2007-07-24 20:46 ` Dan Nicolaescu
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.