* Error in bootstrap
@ 2006-04-12 11:15 Juanma Barranquero
2006-04-12 13:31 ` Eli Zaretskii
2006-04-12 14:53 ` Eli Zaretskii
0 siblings, 2 replies; 7+ messages in thread
From: Juanma Barranquero @ 2006-04-12 11:15 UTC (permalink / raw)
I'm the only one seeing this crash in bootstrap?
Wrote C:/bin/emacs/HEAD/lisp/emacs-lisp/byte-opt.elc
In toplevel form:
C:/bin/emacs/HEAD/lisp/emacs-lisp/bytecomp.el:156:1:Error: Symbol's
value as variable is void: me\.
In toplevel form:
C:/bin/emacs/HEAD/lisp/subr.el:35:45:Error: Symbol's value as
variable is void: me\.
In toplevel form:
C:/bin/emacs/HEAD/lisp/progmodes/cc-mode.el:77:1:Error: Symbol's
value as variable is void: me\.
In toplevel form:
C:/bin/emacs/HEAD/lisp/progmodes/cc-vars.el:35:1:Error: Symbol's
value as variable is void: me\.
make[1]: *** [compile-CMD] Error 1
make[1]: Leaving directory `C:/bin/emacs/HEAD/lisp'
make: *** [bootstrap-gmake] Error 2
--
/L/e/k/t/u
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Error in bootstrap
2006-04-12 11:15 Error in bootstrap Juanma Barranquero
@ 2006-04-12 13:31 ` Eli Zaretskii
2006-04-12 13:48 ` Juanma Barranquero
2006-04-12 14:53 ` Eli Zaretskii
1 sibling, 1 reply; 7+ messages in thread
From: Eli Zaretskii @ 2006-04-12 13:31 UTC (permalink / raw)
Cc: emacs-devel
> Date: Wed, 12 Apr 2006 13:15:06 +0200
> From: "Juanma Barranquero" <lekktu@gmail.com>
>
> I'm the only one seeing this crash in bootstrap?
>
> Wrote C:/bin/emacs/HEAD/lisp/emacs-lisp/byte-opt.elc
>
> In toplevel form:
> C:/bin/emacs/HEAD/lisp/emacs-lisp/bytecomp.el:156:1:Error: Symbol's
> value as variable is void: me\.
No, it's not only you, but it seems that it's specific to MS-Windows,
as on GNU/Linux bootstrap works.
I'll try to look into this.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Error in bootstrap
2006-04-12 13:31 ` Eli Zaretskii
@ 2006-04-12 13:48 ` Juanma Barranquero
0 siblings, 0 replies; 7+ messages in thread
From: Juanma Barranquero @ 2006-04-12 13:48 UTC (permalink / raw)
Cc: emacs-devel
On 4/12/06, Eli Zaretskii <eliz@gnu.org> wrote:
> I'll try to look into this.
Thanks.
/L/e/k/t/u
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Error in bootstrap
2006-04-12 11:15 Error in bootstrap Juanma Barranquero
2006-04-12 13:31 ` Eli Zaretskii
@ 2006-04-12 14:53 ` Eli Zaretskii
2006-04-12 15:21 ` Juanma Barranquero
2006-04-13 4:43 ` Kenichi Handa
1 sibling, 2 replies; 7+ messages in thread
From: Eli Zaretskii @ 2006-04-12 14:53 UTC (permalink / raw)
Cc: emacs-devel
> Date: Wed, 12 Apr 2006 13:15:06 +0200
> From: "Juanma Barranquero" <lekktu@gmail.com>
>
> I'm the only one seeing this crash in bootstrap?
>
> Wrote C:/bin/emacs/HEAD/lisp/emacs-lisp/byte-opt.elc
>
> In toplevel form:
> C:/bin/emacs/HEAD/lisp/emacs-lisp/bytecomp.el:156:1:Error: Symbol's
> value as variable is void: me\.
>
> In toplevel form:
> C:/bin/emacs/HEAD/lisp/subr.el:35:45:Error: Symbol's value as
> variable is void: me\.
I found the probable reason: it's this change:
2006-04-12 Kenichi Handa <handa@m17n.org>
* coding.c (setup_coding_system): Use system_eol_type for default
coding->eol_type.
For now, undo this change, and the bootstrap will succeed.
Handa-san, could you please look into why this change breaks the
Windows port? I suspect that it somehow causes the .elc files to be
written with EOL conversions \n -> \r\n, which corrupts the compiled
files. But I don't see why: bytecomp.el binds coding-system-for-write
to no-conversion, so it ought to work. Is it possible that your
change affects no-conversion?
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Error in bootstrap
2006-04-12 14:53 ` Eli Zaretskii
@ 2006-04-12 15:21 ` Juanma Barranquero
2006-04-13 4:43 ` Kenichi Handa
1 sibling, 0 replies; 7+ messages in thread
From: Juanma Barranquero @ 2006-04-12 15:21 UTC (permalink / raw)
Cc: emacs-devel
On 4/12/06, Eli Zaretskii <eliz@gnu.org> wrote:
> I found the probable reason: it's this change:
>
> 2006-04-12 Kenichi Handa <handa@m17n.org>
Yeah, it bootstraps now. Thanks.
--
/L/e/k/t/u
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Error in bootstrap
2006-04-12 14:53 ` Eli Zaretskii
2006-04-12 15:21 ` Juanma Barranquero
@ 2006-04-13 4:43 ` Kenichi Handa
2006-04-13 9:34 ` Eli Zaretskii
1 sibling, 1 reply; 7+ messages in thread
From: Kenichi Handa @ 2006-04-13 4:43 UTC (permalink / raw)
Cc: lekktu, emacs-devel
In article <u7j5u4zgb.fsf@gnu.org>, Eli Zaretskii <eliz@gnu.org> writes:
> I found the probable reason: it's this change:
> 2006-04-12 Kenichi Handa <handa@m17n.org>
> * coding.c (setup_coding_system): Use system_eol_type for default
> coding-> eol_type.
> For now, undo this change, and the bootstrap will succeed.
> Handa-san, could you please look into why this change breaks the
> Windows port? I suspect that it somehow causes the .elc files to be
> written with EOL conversions \n -> \r\n, which corrupts the compiled
> files. But I don't see why: bytecomp.el binds coding-system-for-write
> to no-conversion, so it ought to work. Is it possible that your
> change affects no-conversion?
Yes, thank you for tracking down the problem. I've just
installed fixed.
---
Kenichi Handa
handa@m17n.org
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Error in bootstrap
2006-04-13 4:43 ` Kenichi Handa
@ 2006-04-13 9:34 ` Eli Zaretskii
0 siblings, 0 replies; 7+ messages in thread
From: Eli Zaretskii @ 2006-04-13 9:34 UTC (permalink / raw)
Cc: lekktu, emacs-devel
> From: Kenichi Handa <handa@m17n.org>
> CC: lekktu@gmail.com, emacs-devel@gnu.org
> Date: Thu, 13 Apr 2006 13:43:45 +0900
>
> > Handa-san, could you please look into why this change breaks the
> > Windows port? I suspect that it somehow causes the .elc files to be
> > written with EOL conversions \n -> \r\n, which corrupts the compiled
> > files. But I don't see why: bytecomp.el binds coding-system-for-write
> > to no-conversion, so it ought to work. Is it possible that your
> > change affects no-conversion?
>
> Yes, thank you for tracking down the problem. I've just
> installed fixed.
Thanks.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2006-04-13 9:34 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-12 11:15 Error in bootstrap Juanma Barranquero
2006-04-12 13:31 ` Eli Zaretskii
2006-04-12 13:48 ` Juanma Barranquero
2006-04-12 14:53 ` Eli Zaretskii
2006-04-12 15:21 ` Juanma Barranquero
2006-04-13 4:43 ` Kenichi Handa
2006-04-13 9:34 ` Eli Zaretskii
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).