unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#37835: Emacs head version cannot build
@ 2019-10-20 17:51 ccQ's Gmail
  2019-10-20 18:54 ` Juri Linkov
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: ccQ's Gmail @ 2019-10-20 17:51 UTC (permalink / raw)
  To: 37835

My OS: macOS Catalina 10.15

I git clone emacs HEAD source code from GitHub and `cd` in. 

My build steps:

1. ./autogen.sh
2. ./configure
3. make

And it stop at 

```
Loading /Users/ccQ/Downloads/emacs/lisp/loaddefs.el (source)...
Symbol’s value as variable is void: ctl-x-6-map
make[1]: *** [bootstrap-emacs.pdmp] Error 255
make: *** [src] Error 2
```

Do I miss something? These build steps work fine several days ago.






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

* bug#37835: Emacs head version cannot build
  2019-10-20 17:51 bug#37835: Emacs head version cannot build ccQ's Gmail
@ 2019-10-20 18:54 ` Juri Linkov
  2019-10-20 19:09   ` Eli Zaretskii
  2019-10-20 18:56 ` Stephen Berman
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 9+ messages in thread
From: Juri Linkov @ 2019-10-20 18:54 UTC (permalink / raw)
  To: ccQ's Gmail; +Cc: 37835

> My OS: macOS Catalina 10.15
>
> I git clone emacs HEAD source code from GitHub and `cd` in. 
>
> My build steps:
>
> 1. ./autogen.sh
> 2. ./configure
> 3. make
>
> And it stop at 
>
> ```
> Loading /Users/ccQ/Downloads/emacs/lisp/loaddefs.el (source)...
> Symbol’s value as variable is void: ctl-x-6-map
> make[1]: *** [bootstrap-emacs.pdmp] Error 255
> make: *** [src] Error 2
> ```
>
> Do I miss something? These build steps work fine several days ago.

Thanks for the report.  I tried to bootstrap, and it builds fine.
And indeed I see no ctl-x-6-map in loaddefs.el.  I have no idea
what is wrong.





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

* bug#37835: Emacs head version cannot build
  2019-10-20 17:51 bug#37835: Emacs head version cannot build ccQ's Gmail
  2019-10-20 18:54 ` Juri Linkov
@ 2019-10-20 18:56 ` Stephen Berman
  2019-10-20 19:04   ` ccQ's Gmail
  2019-10-20 19:10   ` Eli Zaretskii
  2019-10-20 18:58 ` Andreas Schwab
  2019-10-22  0:43 ` Paul Eggert
  3 siblings, 2 replies; 9+ messages in thread
From: Stephen Berman @ 2019-10-20 18:56 UTC (permalink / raw)
  To: ccQ's Gmail; +Cc: 37835

On Sun, 20 Oct 2019 13:51:41 -0400 ccQ's Gmail <ccq777@gmail.com> wrote:

> My OS: macOS Catalina 10.15
>
> I git clone emacs HEAD source code from GitHub and `cd` in. 
>
> My build steps:
>
> 1. ./autogen.sh
> 2. ./configure
> 3. make
>
> And it stop at 
>
> ```
> Loading /Users/ccQ/Downloads/emacs/lisp/loaddefs.el (source)...
> Symbol’s value as variable is void: ctl-x-6-map
> make[1]: *** [bootstrap-emacs.pdmp] Error 255
> make: *** [src] Error 2
> ```
>
> Do I miss something? These build steps work fine several days ago.

I had this problem after a `git pull; make' and `cd lisp; make autoloads'
fixed it for me (though AFAIK a fresh clone could not contain a stale
loaddefs.el, so if that's what you did, maybe it's a different problem).

Steve Berman





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

* bug#37835: Emacs head version cannot build
  2019-10-20 17:51 bug#37835: Emacs head version cannot build ccQ's Gmail
  2019-10-20 18:54 ` Juri Linkov
  2019-10-20 18:56 ` Stephen Berman
@ 2019-10-20 18:58 ` Andreas Schwab
  2019-10-20 19:06   ` ccQ's Gmail
  2019-10-22  0:43 ` Paul Eggert
  3 siblings, 1 reply; 9+ messages in thread
From: Andreas Schwab @ 2019-10-20 18:58 UTC (permalink / raw)
  To: ccQ's Gmail; +Cc: 37835

On Okt 20 2019, ccQ's Gmail wrote:

> Loading /Users/ccQ/Downloads/emacs/lisp/loaddefs.el (source)...
> Symbol’s value as variable is void: ctl-x-6-map

You have a stale loaddefs.el lying around, delete it.

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510  2552 DF73 E780 A9DA AEC1
"And now for something completely different."





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

* bug#37835: Emacs head version cannot build
  2019-10-20 18:56 ` Stephen Berman
@ 2019-10-20 19:04   ` ccQ's Gmail
  2019-10-20 19:10   ` Eli Zaretskii
  1 sibling, 0 replies; 9+ messages in thread
From: ccQ's Gmail @ 2019-10-20 19:04 UTC (permalink / raw)
  To: Stephen Berman; +Cc: 37835

Thanks Stephen, I run `cd lisp && make autoloads`, then my build script work fine now.

> On Oct 20, 2019, at 14:56, Stephen Berman <stephen.berman@gmx.net> wrote:
> 
> On Sun, 20 Oct 2019 13:51:41 -0400 ccQ's Gmail <ccq777@gmail.com> wrote:
> 
>> My OS: macOS Catalina 10.15
>> 
>> I git clone emacs HEAD source code from GitHub and `cd` in. 
>> 
>> My build steps:
>> 
>> 1. ./autogen.sh
>> 2. ./configure
>> 3. make
>> 
>> And it stop at 
>> 
>> ```
>> Loading /Users/ccQ/Downloads/emacs/lisp/loaddefs.el (source)...
>> Symbol’s value as variable is void: ctl-x-6-map
>> make[1]: *** [bootstrap-emacs.pdmp] Error 255
>> make: *** [src] Error 2
>> ```
>> 
>> Do I miss something? These build steps work fine several days ago.
> 
> I had this problem after a `git pull; make' and `cd lisp; make autoloads'
> fixed it for me (though AFAIK a fresh clone could not contain a stale
> loaddefs.el, so if that's what you did, maybe it's a different problem).
> 
> Steve Berman






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

* bug#37835: Emacs head version cannot build
  2019-10-20 18:58 ` Andreas Schwab
@ 2019-10-20 19:06   ` ccQ's Gmail
  0 siblings, 0 replies; 9+ messages in thread
From: ccQ's Gmail @ 2019-10-20 19:06 UTC (permalink / raw)
  To: Andreas Schwab; +Cc: 37835

Thanks Andreas, I am trying to re-clone whole source code again.

> On Oct 20, 2019, at 14:58, Andreas Schwab <schwab@linux-m68k.org> wrote:
> 
> On Okt 20 2019, ccQ's Gmail wrote:
> 
>> Loading /Users/ccQ/Downloads/emacs/lisp/loaddefs.el (source)...
>> Symbol’s value as variable is void: ctl-x-6-map
> 
> You have a stale loaddefs.el lying around, delete it.
> 
> Andreas.
> 
> -- 
> Andreas Schwab, schwab@linux-m68k.org
> GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510  2552 DF73 E780 A9DA AEC1
> "And now for something completely different."






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

* bug#37835: Emacs head version cannot build
  2019-10-20 18:54 ` Juri Linkov
@ 2019-10-20 19:09   ` Eli Zaretskii
  0 siblings, 0 replies; 9+ messages in thread
From: Eli Zaretskii @ 2019-10-20 19:09 UTC (permalink / raw)
  To: Juri Linkov; +Cc: ccq777, 37835

> From: Juri Linkov <juri@linkov.net>
> Date: Sun, 20 Oct 2019 21:54:07 +0300
> Cc: 37835@debbugs.gnu.org
> 
> > Loading /Users/ccQ/Downloads/emacs/lisp/loaddefs.el (source)...
> > Symbol’s value as variable is void: ctl-x-6-map
> > make[1]: *** [bootstrap-emacs.pdmp] Error 255
> > make: *** [src] Error 2
> > ```
> >
> > Do I miss something? These build steps work fine several days ago.
> 
> Thanks for the report.  I tried to bootstrap, and it builds fine.
> And indeed I see no ctl-x-6-map in loaddefs.el.  I have no idea
> what is wrong.

Some other .elc file has stale references to ctl-x-6-map?





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

* bug#37835: Emacs head version cannot build
  2019-10-20 18:56 ` Stephen Berman
  2019-10-20 19:04   ` ccQ's Gmail
@ 2019-10-20 19:10   ` Eli Zaretskii
  1 sibling, 0 replies; 9+ messages in thread
From: Eli Zaretskii @ 2019-10-20 19:10 UTC (permalink / raw)
  To: Stephen Berman; +Cc: ccq777, 37835

> From: Stephen Berman <stephen.berman@gmx.net>
> Date: Sun, 20 Oct 2019 20:56:55 +0200
> Cc: 37835@debbugs.gnu.org
> 
> I had this problem after a `git pull; make' and `cd lisp; make autoloads'
> fixed it for me (though AFAIK a fresh clone could not contain a stale
> loaddefs.el, so if that's what you did, maybe it's a different problem).

Maybe ldefs-boot.el also needs to be refreshed.





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

* bug#37835: Emacs head version cannot build
  2019-10-20 17:51 bug#37835: Emacs head version cannot build ccQ's Gmail
                   ` (2 preceding siblings ...)
  2019-10-20 18:58 ` Andreas Schwab
@ 2019-10-22  0:43 ` Paul Eggert
  3 siblings, 0 replies; 9+ messages in thread
From: Paul Eggert @ 2019-10-22  0:43 UTC (permalink / raw)
  To: Andreas Schwab; +Cc: 37835-done

> You have a stale loaddefs.el lying around, delete it.

Thanks for diagnosing the problem. Closing the bug report.





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

end of thread, other threads:[~2019-10-22  0:43 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-20 17:51 bug#37835: Emacs head version cannot build ccQ's Gmail
2019-10-20 18:54 ` Juri Linkov
2019-10-20 19:09   ` Eli Zaretskii
2019-10-20 18:56 ` Stephen Berman
2019-10-20 19:04   ` ccQ's Gmail
2019-10-20 19:10   ` Eli Zaretskii
2019-10-20 18:58 ` Andreas Schwab
2019-10-20 19:06   ` ccQ's Gmail
2019-10-22  0:43 ` Paul Eggert

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