[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Emacs 21.3.50 on cygwin bootstrap failed.
From: |
Harald Maier |
Subject: |
Re: Emacs 21.3.50 on cygwin bootstrap failed. |
Date: |
Fri, 13 Feb 2004 07:51:56 +0100 |
User-agent: |
Gnus/5.110002 (No Gnus v0.2) Emacs/21.3.50 (gnu/linux) |
"Steven Wu" <address@hidden> writes:
> I took the CVS src of Emacs 21.3.50 to cygwin and did make
> bootstrap. The bootstrap-emacs was generated, however, it could not
> load loadup.el and complained the file was missing. Of course, the
> file was right there. Does anyone has the similar problem compiling
> CVS emacs on cygwin?
I played around and it seems that in the emacs/lisp directory the
load path during bootstrapping is wrong calculated:
,----[ Wrong Load Path ]
| Using load-path (
| /usr/local/share/emacs/21.3.50/site-lisp
| /usr/local/share/emacs/21.3.50/site-lisp/emacs-lisp
| /usr/local/share/emacs/21.3.50/site-lisp/language
| /usr/local/share/emacs/21.3.50/site-lisp/international
| /usr/local/share/emacs/21.3.50/site-lisp/textmodes)
`----
I don't know why this happens, maybe other people have an idea. As a
workaround you can go into the emacs/lisp directory and then put in
the following command:
,----
| $ EMACSLOADPATH=. make bootstrap EMACS=../src/bootsrap-emacs.exe
`----
Additional it needs too the following change in the loadup.el file,
because bootstraping wants to load too the compile.el file:
------
Index: loadup.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/loadup.el,v
retrieving revision 1.133
diff -r1.133 loadup.el
40a41
> (expand-file-name "progmodes" dir)
------
Harald
PS: I did the above with the source of 2004-02-09.