f88a853fe065ebcf3991644581d1e461321cab7f
[chise/xemacs-chise.git.1] / lisp / update-elc.el
1 ;;; update-elc.el --- Bytecompile out-of-date dumped files
2
3 ;; Copyright (C) 1997 Free Software Foundation, Inc.
4 ;; Copyright (C) 1996 Unknown
5
6 ;; Maintainer: XEmacs Development Team
7 ;; Keywords: internal
8
9 ;; This file is part of XEmacs.
10
11 ;; XEmacs is free software; you can redistribute it and/or modify it
12 ;; under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; XEmacs is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 ;; General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with XEmacs; see the file COPYING.  If not, write to the 
23 ;; Free Software Foundation, 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Synched up with: Not in FSF.
27
28 ;;; Commentary:
29
30 ;; Byte compile the .EL files necessary to dump out xemacs.
31 ;; Use this file like this:
32
33 ;; temacs -batch -l ../lisp/update-elc.el $lisp
34
35 ;; where $lisp comes from the Makefile.  .elc files listed in $lisp will
36 ;; cause the corresponding .el file to be compiled.  .el files listed in
37 ;; $lisp will be ignored.
38
39 ;; (the idea here is that you can bootstrap if your .ELC files
40 ;; are missing or badly out-of-date)
41
42 ;; Currently this code gets the list of files to check passed to it from
43 ;; src/Makefile.  This must be fixed.  -slb
44
45 ;;; Code:
46
47 (defvar processed nil)
48 (defvar update-elc-files-to-compile nil)
49
50 ;(setq update-elc-files-to-compile
51 ;      (delq nil
52 ;           (mapcar (function
53 ;                    (lambda (x)
54 ;                      (if (string-match "\.elc$" x)
55 ;                          (let ((src (substring x 0 -1)))
56 ;                            (if (file-newer-than-file-p src x)
57 ;                                (progn
58 ;                                  (and (file-exists-p x)
59 ;                                       (null (file-writable-p x))
60 ;                                       (set-file-modes x (logior (file-modes x) 128)))
61 ;                                  src))))))
62 ;                   ;; -batch gets filtered out.
63 ;                   (nthcdr 3 command-line-args))))
64
65 (let ((build-root (expand-file-name ".." invocation-directory)))
66   (setq load-path (list (expand-file-name "lisp" build-root))))
67
68 (load "very-early-lisp" nil t)
69
70 (load "find-paths.el")
71 (load "packages.el")
72 (load "setup-paths.el")
73 (load "dump-paths.el")
74
75 (let ((autol (packages-list-autoloads (concat default-directory "../lisp"))))
76   ;; (print (prin1-to-string autol))
77   (while autol
78     (let ((src (car autol)))
79       (if (and (file-exists-p src)
80                (file-newer-than-file-p src (concat src "c")))
81           (setq update-elc-files-to-compile
82                 (cons src update-elc-files-to-compile))))
83     (setq autol (cdr autol))))
84
85 ;; (print (prin1-to-string update-elc-files-to-compile))
86
87 (let (preloaded-file-list site-load-packages)
88   (load (expand-file-name "../lisp/dumped-lisp.el"))
89
90   ;; Path setup
91   (let ((package-preloaded-file-list
92          (packages-collect-package-dumped-lisps late-package-load-path)))
93  
94     (setq preloaded-file-list
95           (append package-preloaded-file-list
96                   preloaded-file-list
97                   packages-hardcoded-lisp)))
98
99   (load (concat default-directory "../site-packages") t t)
100   (setq preloaded-file-list
101         (append packages-hardcoded-lisp
102                 preloaded-file-list
103                 packages-useful-lisp
104                 site-load-packages))
105   (while preloaded-file-list
106     (let ((arg (car preloaded-file-list)))
107       ;; (print (prin1-to-string arg))
108       (if (null (member (file-name-nondirectory arg)
109                         packages-unbytecompiled-lisp))
110           (progn
111             (setq arg (locate-library arg))
112             (if (null arg)
113                 (progn
114                   (print (format "Error: Library file %s not found"
115                                  (car preloaded-file-list)))
116                   ;; Uncomment in case of trouble
117                   ;;(print (format "late-packages: %S" late-packages))
118                   ;;(print (format "guessed-roots: %S" (paths-find-emacs-roots invocation-directory invocation-name)))
119                   (kill-emacs)))
120             (if (string-match "\\.elc?\\'" arg)
121                 (setq arg (substring arg 0 (match-beginning 0))))
122             (if (and (null (member arg processed))
123                      (file-exists-p (concat arg ".el"))
124                      (file-newer-than-file-p (concat arg ".el")
125                                              (concat arg ".elc")))
126                 (setq processed (cons (concat arg ".el") processed)))))
127       (setq preloaded-file-list (cdr preloaded-file-list)))))
128
129 (setq update-elc-files-to-compile (append update-elc-files-to-compile
130                                           processed))
131
132 ;; (print (prin1-to-string update-elc-files-to-compile))
133
134 (if update-elc-files-to-compile
135     (progn
136       (setq command-line-args
137             (append '("-l" "loadup-el.el" "run-temacs"
138                       "-batch" "-q" "-no-site-file"
139                       "-l" "bytecomp" "-f" "batch-byte-compile")
140                     update-elc-files-to-compile))
141       (load "loadup-el.el"))
142   (condition-case nil
143       (delete-file "./NOBYTECOMPILE")
144     (file-error nil)))
145
146 (kill-emacs)
147
148 ;;; update-elc.el ends here