unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#13198: 24.2; "Error: Symbol's value as variable is void: cl-proclaims-deferred" when compile Emacs trunk.
@ 2012-12-16 10:16 Oleksandr Gavenko
  2012-12-16 16:56 ` Stefan Monnier
       [not found] ` <handler.13198.B.13556530501914.ack@debbugs.gnu.org>
  0 siblings, 2 replies; 5+ messages in thread
From: Oleksandr Gavenko @ 2012-12-16 10:16 UTC (permalink / raw)
  To: 13198


  $ bzr info -v
  Location:
    repository checkout root: .
        checkout of branch: bzr://bzr.savannah.gnu.org/emacs/trunk/

  Branch history:
      111249 revisions
      10104 days old
     first revision: Thu 1985-04-18 00:48:29 +0000
    latest revision: Sun 2012-12-16 11:17:50 +0800

  $ ./configure
   ...

  $ make
   ...

  make[2]: Entering directory `/home/user/devel/emacs/emacs-bzr/trunk/_build/lisp'
  Compiling /home/user/devel/emacs/emacs-bzr/trunk/src/../lisp/isearch.el
  Reloading stale loaddefs.el
  Loading /home/user/devel/emacs/emacs-bzr/trunk/lisp/loaddefs.el (source)...
  Source file `/home/user/devel/emacs/emacs-bzr/trunk/lisp/emacs-lisp/cl-macs.el' newer than byte-compiled file

  In toplevel form:
  ../../lisp/isearch.el:1031:1:Error: Symbol's value as variable is void: cl-proclaims-deferred
  make[2]: *** [compile-onefile] Error 1
  make[2]: Leaving directory `/home/user/devel/emacs/emacs-bzr/trunk/_build/lisp'
  make[1]: *** [/home/user/devel/emacs/emacs-bzr/trunk/src/../lisp/isearch.elc] Error 2
  make[1]: Leaving directory `/home/user/devel/emacs/emacs-bzr/trunk/_build/src'
  make: *** [src] Error 2

-- 
Best regards!





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

* bug#13198: 24.2; "Error: Symbol's value as variable is void: cl-proclaims-deferred" when compile Emacs trunk.
  2012-12-16 10:16 bug#13198: 24.2; "Error: Symbol's value as variable is void: cl-proclaims-deferred" when compile Emacs trunk Oleksandr Gavenko
@ 2012-12-16 16:56 ` Stefan Monnier
       [not found] ` <handler.13198.B.13556530501914.ack@debbugs.gnu.org>
  1 sibling, 0 replies; 5+ messages in thread
From: Stefan Monnier @ 2012-12-16 16:56 UTC (permalink / raw)
  To: Oleksandr Gavenko; +Cc: 13198

>   Source file `/home/user/devel/emacs/emacs-bzr/trunk/lisp/emacs-lisp/cl-macs.el' newer than byte-compiled file

>   In toplevel form:
>   ../../lisp/isearch.el:1031:1:Error: Symbol's value as variable is void: cl-proclaims-deferred

try
    rm lisp/emacs-lisp/cl*.elc; make

or if you have the time "make bootstrap".

        Stefan





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

* bug#13198: Acknowledgement (24.2; "Error: Symbol's value as variable is void: cl-proclaims-deferred" when compile Emacs trunk.)
       [not found] ` <handler.13198.B.13556530501914.ack@debbugs.gnu.org>
@ 2012-12-17 23:22   ` Oleksandr Gavenko
  2012-12-17 23:32     ` Glenn Morris
  2012-12-18  1:31     ` Stefan Monnier
  0 siblings, 2 replies; 5+ messages in thread
From: Oleksandr Gavenko @ 2012-12-17 23:22 UTC (permalink / raw)
  To: 13198

On 2012-12-18, Stefan wrote:

> >   Source file `/home/user/devel/emacs/emacs-bzr/trunk/lisp/emacs-lisp/cl-macs.el' newer than byte-compiled file
> >   In toplevel form:
> >   ../../lisp/isearch.el:1031:1:Error: Symbol's value as variable is void: cl-proclaims-deferred
> try
>     rm lisp/emacs-lisp/cl*.elc; make
> or if you have the time "make bootstrap".

OK. Seems that this help. I perform:

  $ find . -name '*.elc' -exec rm {} ';'

as another similar issue was occurred.

What I don't expect that

  make mostlyclean

and

  make clean

does not cleanup build tree!

Also I build out of source tree and assume that "rm _build/" is sufficient to
make clean build. I don't expect that .elc files created in source tree
(instead of build tree)!

-- 
Best regards!





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

* bug#13198: Acknowledgement (24.2; "Error: Symbol's value as variable is void: cl-proclaims-deferred" when compile Emacs trunk.)
  2012-12-17 23:22   ` bug#13198: Acknowledgement (24.2; "Error: Symbol's value as variable is void: cl-proclaims-deferred" when compile Emacs trunk.) Oleksandr Gavenko
@ 2012-12-17 23:32     ` Glenn Morris
  2012-12-18  1:31     ` Stefan Monnier
  1 sibling, 0 replies; 5+ messages in thread
From: Glenn Morris @ 2012-12-17 23:32 UTC (permalink / raw)
  To: Oleksandr Gavenko; +Cc: 13198

Oleksandr Gavenko wrote:

> What I don't expect that
>
>   make mostlyclean
>
> and
>
>   make clean
>
> does not cleanup build tree!

Maybe read INSTALL.BZR.

Because the .el files are pre-compiled in a normal Emacs release, make
clean does not (and should not) delete .elc files.

> Also I build out of source tree and assume that "rm _build/" is
> sufficient to make clean build. I don't expect that .elc files created
> in source tree (instead of build tree)!

This is a fair point.





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

* bug#13198: Acknowledgement (24.2; "Error: Symbol's value as variable is void: cl-proclaims-deferred" when compile Emacs trunk.)
  2012-12-17 23:22   ` bug#13198: Acknowledgement (24.2; "Error: Symbol's value as variable is void: cl-proclaims-deferred" when compile Emacs trunk.) Oleksandr Gavenko
  2012-12-17 23:32     ` Glenn Morris
@ 2012-12-18  1:31     ` Stefan Monnier
  1 sibling, 0 replies; 5+ messages in thread
From: Stefan Monnier @ 2012-12-18  1:31 UTC (permalink / raw)
  To: Oleksandr Gavenko; +Cc: 13198

> OK. Seems that this help. I perform:
>   $ find . -name '*.elc' -exec rm {} ';'

Then you might as well do "make bootstrap".


        Stefan





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

end of thread, other threads:[~2012-12-18  1:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-16 10:16 bug#13198: 24.2; "Error: Symbol's value as variable is void: cl-proclaims-deferred" when compile Emacs trunk Oleksandr Gavenko
2012-12-16 16:56 ` Stefan Monnier
     [not found] ` <handler.13198.B.13556530501914.ack@debbugs.gnu.org>
2012-12-17 23:22   ` bug#13198: Acknowledgement (24.2; "Error: Symbol's value as variable is void: cl-proclaims-deferred" when compile Emacs trunk.) Oleksandr Gavenko
2012-12-17 23:32     ` Glenn Morris
2012-12-18  1:31     ` Stefan Monnier

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