1303
|
1 ;;; update-elc.el --- Bytecompile out-of-date dumped files, pre-dumping
|
428
|
2
|
|
3 ;; Copyright (C) 1997 Free Software Foundation, Inc.
|
442
|
4 ;; Copyright (C) 1996 Sun Microsystems, Inc.
|
1261
|
5 ;; Copyright (C) 2001, 2003 Ben Wing.
|
428
|
6
|
528
|
7 ;; Author: Ben Wing <ben@xemacs.org>
|
|
8 ;; Based On: Original by Steven L Baur <steve@xemacs.org>
|
428
|
9 ;; Maintainer: XEmacs Development Team
|
|
10 ;; Keywords: internal
|
|
11
|
|
12 ;; This file is part of XEmacs.
|
|
13
|
|
14 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
15 ;; under the terms of the GNU General Public License as published by
|
|
16 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
17 ;; any later version.
|
|
18
|
|
19 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
20 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
21 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
22 ;; General Public License for more details.
|
|
23
|
|
24 ;; You should have received a copy of the GNU General Public License
|
|
25 ;; along with XEmacs; see the file COPYING. If not, write to the
|
|
26 ;; Free Software Foundation, 59 Temple Place - Suite 330,
|
|
27 ;; Boston, MA 02111-1307, USA.
|
|
28
|
|
29 ;;; Synched up with: Not in FSF.
|
|
30
|
|
31 ;;; Commentary:
|
|
32
|
|
33 ;; Byte compile the .EL files necessary to dump out xemacs.
|
1261
|
34 ;; Also update the auto-autoloads.el files.
|
|
35
|
428
|
36 ;; Use this file like this:
|
|
37
|
|
38 ;; temacs -batch -l ../lisp/update-elc.el $lisp
|
|
39
|
|
40 ;; where $lisp comes from the Makefile. .elc files listed in $lisp will
|
|
41 ;; cause the corresponding .el file to be compiled. .el files listed in
|
|
42 ;; $lisp will be ignored.
|
|
43
|
|
44 ;; (the idea here is that you can bootstrap if your .ELC files
|
|
45 ;; are missing or badly out-of-date)
|
|
46
|
442
|
47 ;; See also update-elc-2.el
|
428
|
48
|
|
49 ;;; Code:
|
|
50
|
1261
|
51 ;; Help debug problems.
|
|
52 (setq stack-trace-on-error t
|
|
53 load-always-display-messages t)
|
|
54
|
428
|
55 (defvar processed nil)
|
|
56 (defvar update-elc-files-to-compile nil)
|
528
|
57 (defvar need-to-rebuild-autoloads nil)
|
|
58 (defvar need-to-rebuild-mule-autoloads nil)
|
|
59 (defvar need-to-recompile-autoloads nil)
|
|
60 (defvar need-to-recompile-mule-autoloads nil)
|
1330
|
61 (defvar exe-target nil)
|
|
62 (defvar dump-target nil)
|
|
63 (defvar dump-target-out-of-date-wrt-dump-files nil)
|
|
64 ;(defvar dump-target-out-of-date-wrt-exe-target nil)
|
428
|
65
|
|
66 ;(setq update-elc-files-to-compile
|
|
67 ; (delq nil
|
|
68 ; (mapcar (function
|
|
69 ; (lambda (x)
|
|
70 ; (if (string-match "\.elc$" x)
|
|
71 ; (let ((src (substring x 0 -1)))
|
|
72 ; (if (file-newer-than-file-p src x)
|
|
73 ; (progn
|
|
74 ; (and (file-exists-p x)
|
|
75 ; (null (file-writable-p x))
|
|
76 ; (set-file-modes x (logior (file-modes x) 128)))
|
|
77 ; src))))))
|
|
78 ; ;; -batch gets filtered out.
|
|
79 ; (nthcdr 3 command-line-args))))
|
|
80
|
1330
|
81
|
3511
|
82 (defvar build-directory (expand-file-name ".." invocation-directory))
|
|
83
|
1330
|
84 (defvar source-lisp (file-name-directory (expand-file-name
|
3511
|
85 (nth 2 command-line-args))))
|
|
86
|
1330
|
87 (defvar source-lisp-mule (expand-file-name "mule" source-lisp))
|
3511
|
88 (defvar source-directory (expand-file-name ".." source-lisp))
|
1330
|
89 (defvar aa-lisp (expand-file-name "auto-autoloads.el" source-lisp))
|
|
90 (defvar aac-lisp (expand-file-name "auto-autoloads.elc" source-lisp))
|
|
91 (defvar aa-lisp-mule (expand-file-name "auto-autoloads.el" source-lisp-mule))
|
|
92 (defvar aac-lisp-mule (expand-file-name "auto-autoloads.elc" source-lisp-mule))
|
|
93
|
|
94 (setq load-path (list source-lisp))
|
428
|
95
|
|
96 (load "find-paths.el")
|
|
97 (load "packages.el")
|
|
98 (load "setup-paths.el")
|
1261
|
99
|
|
100 ;; Lisp files loaded in order to byte compile anything. If any are out of
|
|
101 ;; date, we need to load them as .el's, byte compile them, and reload as
|
|
102 ;; .elc's.
|
|
103 (defvar lisp-files-needed-for-byte-compilation
|
|
104 '("bytecomp"
|
|
105 "byte-optimize"))
|
|
106
|
1263
|
107 ;; Lisp files not in `lisp-files-needed-for-byte-compilation' that need
|
|
108 ;; early byte compilation. These are files loaded by update-elc.el in
|
|
109 ;; order to do the compilation of all the rest of the files.
|
1261
|
110 (defvar lisp-files-needing-early-byte-compilation
|
2548
|
111 '("easy-mmode"
|
1261
|
112 "autoload"
|
|
113 "shadow"
|
|
114 "cl-macs"))
|
|
115
|
|
116 (defvar unbytecompiled-lisp-files
|
|
117 '("paths.el"
|
|
118 "dumped-lisp.el"
|
|
119 "dumped-pkg-lisp.el"
|
1275
|
120 "raw-process.el"
|
1315
|
121 "version.el")
|
2367
|
122 "Lisp files that should not be byte compiled.
|
|
123 Files in `additional-dump-dependencies' do not need to be listed here.")
|
|
124
|
|
125 (defvar additional-dump-dependencies
|
|
126 '("loadup.el"
|
|
127 "loadup-el.el"
|
|
128 "update-elc.el")
|
|
129 "Lisp files that are not dumped but which the dump depends on.
|
|
130 If any of these files are changed, we need to redump.")
|
428
|
131
|
1298
|
132 (defvar lisp-files-ignored-when-checking-for-autoload-updating
|
|
133 '("custom-load.el"
|
|
134 "auto-autoloads.el")
|
|
135 "Lisp files that should not trigger auto-autoloads rebuilding.")
|
|
136
|
528
|
137 (defun update-elc-chop-extension (file)
|
|
138 (if (string-match "\\.elc?$" file)
|
|
139 (substring file 0 (match-beginning 0))
|
|
140 file))
|
428
|
141
|
528
|
142 ;; we used to call packages-list-autoloads here, but it's false generality.
|
|
143 ;; we need to handle each autoload file differently and there are only
|
|
144 ;; two of them.
|
428
|
145
|
1261
|
146 (let (preloaded-file-list site-load-packages files-to-process)
|
528
|
147
|
1330
|
148 (load (expand-file-name "dumped-lisp.el" source-lisp))
|
442
|
149
|
1330
|
150 ;; two setups here:
|
|
151 ;; (1) temacs.exe is undumped, dumped into xemacs.exe. Happens with
|
|
152 ;; unexec, but also with pdump under MS Windows native, since
|
|
153 ;; the dumped data is stored as a resource in the xemacs.exe
|
|
154 ;; executable.
|
|
155 ;; (2) xemacs.exe is dumped or undumped. Running `xemacs -nd' gets
|
|
156 ;; you the equivalent of `temacs'. Dumping creates a file
|
|
157 ;; `xemacs.dmp'.
|
1261
|
158
|
1330
|
159 (cond ((eq system-type 'windows-nt)
|
|
160 (setq exe-target "src/temacs.exe"
|
|
161 dump-target "src/xemacs.exe"))
|
|
162 ;; #### need better ways of getting config params
|
|
163 ((not (memq 'pdump (emacs-run-status)))
|
|
164 (setq exe-target "src/temacs"
|
|
165 dump-target "src/xemacs"))
|
|
166 (t
|
|
167 (setq exe-target "src/xemacs"
|
|
168 dump-target "src/xemacs.dmp")))
|
1261
|
169
|
3511
|
170 (setq exe-target (expand-file-name exe-target build-directory))
|
|
171 (setq dump-target (expand-file-name dump-target build-directory))
|
1330
|
172
|
|
173 ;; Not currently used.
|
|
174 ; (setq dump-target-out-of-date-wrt-exe-target
|
|
175 ; (cond ((not dump-target) t)
|
|
176 ; (temacs-exe (file-newer-than-file-p temacs-exe dump-target))
|
|
177 ; ((not data-file) t)
|
|
178 ; (t (file-newer-than-file-p dump-target data-file))))
|
|
179 ; (setq dump-target-exists (or (and temacs-exe dump-target)
|
|
180 ; (and data-file dump-target))))
|
1261
|
181
|
428
|
182 ;; Path setup
|
|
183 (let ((package-preloaded-file-list
|
|
184 (packages-collect-package-dumped-lisps late-package-load-path)))
|
|
185
|
|
186 (setq preloaded-file-list
|
|
187 (append package-preloaded-file-list
|
|
188 preloaded-file-list
|
|
189 packages-hardcoded-lisp)))
|
|
190
|
3511
|
191 (load (expand-file-name "site-packages" source-directory) t t)
|
428
|
192 (setq preloaded-file-list
|
|
193 (append packages-hardcoded-lisp
|
|
194 preloaded-file-list
|
|
195 site-load-packages))
|
1261
|
196 ;; bytecomp, byte-optimize, autoload, etc. are mentioned specially
|
|
197 ;; in the lisp-files-need* variables.
|
|
198 (setq files-to-process (append lisp-files-needed-for-byte-compilation
|
|
199 lisp-files-needing-early-byte-compilation
|
2367
|
200 additional-dump-dependencies
|
1261
|
201 preloaded-file-list))
|
528
|
202 (while files-to-process
|
|
203 (let* ((arg (car files-to-process))
|
2367
|
204 (arg-is-dump-dependency
|
|
205 (or (member arg preloaded-file-list)
|
|
206 (member arg additional-dump-dependencies)))
|
528
|
207 (arg-sans-extension (update-elc-chop-extension arg))
|
|
208 (full-arg (locate-library arg-sans-extension))
|
|
209 (full-arg-sans-extension
|
|
210 (if (null full-arg)
|
|
211 (progn
|
|
212 (print (format "Error: Library file %s not found" arg))
|
1261
|
213 (backtrace)
|
528
|
214 ;; Uncomment in case of trouble
|
2456
|
215 ;;(print (format "late-package-hierarchies: %S" late-package-hierarchies))
|
528
|
216 ;;(print (format "guessed-roots: %S"
|
|
217 ;; (paths-find-emacs-roots
|
|
218 ;; invocation-directory invocation-name)))
|
|
219 (kill-emacs))
|
|
220 (update-elc-chop-extension full-arg)))
|
|
221 (full-arg-el (concat full-arg-sans-extension ".el"))
|
|
222 (full-arg-elc (concat full-arg-sans-extension ".elc"))
|
1261
|
223 (full-arg-dir (file-name-directory full-arg-el)))
|
528
|
224
|
2367
|
225 ; (print full-arg-el)
|
442
|
226
|
|
227 ;; now check if .el or .elc is newer than the dumped exe.
|
|
228 ;; if so, need to redump.
|
2367
|
229 (when (and dump-target arg-is-dump-dependency
|
1298
|
230 ;; no need to check for existence of either of the files
|
|
231 ;; because of the definition of file-newer-than-file-p.
|
1330
|
232 (or (file-newer-than-file-p full-arg-el dump-target)
|
|
233 (file-newer-than-file-p full-arg-elc dump-target)))
|
|
234 (setq dump-target-out-of-date-wrt-dump-files t))
|
528
|
235
|
|
236 (if (and (not (member (file-name-nondirectory arg)
|
1261
|
237 unbytecompiled-lisp-files))
|
2367
|
238 (not (member (file-name-nondirectory arg)
|
|
239 additional-dump-dependencies))
|
528
|
240 (not (member full-arg-el processed))
|
1298
|
241 ;; no need to check for existence of either of the files
|
|
242 ;; because of the definition of file-newer-than-file-p.
|
|
243 (file-newer-than-file-p full-arg-el full-arg-elc))
|
528
|
244 (setq processed (cons full-arg-el processed)))
|
|
245
|
|
246 (setq files-to-process (cdr files-to-process))))
|
442
|
247
|
1261
|
248 ;; Check if we need to rebuild the auto-autoloads.el files -- that is,
|
|
249 ;; if ANY .el files have changed.
|
1330
|
250 (let ((dirs-to-check (list source-lisp source-lisp-mule)))
|
1261
|
251 (while dirs-to-check
|
|
252 (let* ((dir (car dirs-to-check))
|
|
253 (full-dir (expand-file-name dir))
|
|
254 (all-files-in-dir (directory-files full-dir t "\\.el$" nil t))
|
|
255 (autoload-file
|
|
256 (expand-file-name "auto-autoloads.el" full-dir))
|
1330
|
257 (autoload-is-mule (equal dir source-lisp-mule)))
|
1261
|
258 (while all-files-in-dir
|
|
259 (let* ((full-arg (car all-files-in-dir)))
|
1298
|
260 ;; custom-load.el always gets regenerated so don't let that
|
|
261 ;; trigger us.
|
|
262 (when (and (not
|
|
263 (member
|
|
264 (file-name-nondirectory full-arg)
|
|
265 lisp-files-ignored-when-checking-for-autoload-updating
|
|
266 ))
|
|
267 (file-newer-than-file-p full-arg autoload-file))
|
1261
|
268 (if autoload-is-mule
|
|
269 (setq need-to-rebuild-mule-autoloads t)
|
|
270 (setq need-to-rebuild-autoloads t))))
|
|
271 (setq all-files-in-dir (cdr all-files-in-dir))))
|
|
272 (setq dirs-to-check (cdr dirs-to-check))))
|
|
273
|
1330
|
274 (if dump-target-out-of-date-wrt-dump-files
|
442
|
275 (condition-case nil
|
1330
|
276 (write-region-internal
|
3511
|
277 "foo" nil (expand-file-name "src/NEEDTODUMP" build-directory))
|
442
|
278 (file-error nil)))
|
|
279
|
|
280 )
|
428
|
281
|
528
|
282 (when (or need-to-rebuild-autoloads
|
1298
|
283 ;; no real need for the following check either, because if the file
|
|
284 ;; doesn't exist, need-to-rebuild-autoloads gets set above. but
|
|
285 ;; it's only one call, so it won't slow things down much and it keeps
|
|
286 ;; the logic cleaner.
|
1330
|
287 (not (file-exists-p aa-lisp))
|
1298
|
288 ;; no need to check for file-exists of .elc due to definition
|
|
289 ;; of file-newer-than-file-p
|
1330
|
290 (file-newer-than-file-p aa-lisp aac-lisp))
|
528
|
291 (setq need-to-recompile-autoloads t))
|
|
292
|
|
293 (when (or need-to-rebuild-mule-autoloads
|
1298
|
294 ;; not necessary but ... see comment above.
|
1330
|
295 (not (file-exists-p aa-lisp-mule))
|
1298
|
296 ;; no need to check for file-exists of .elc due to definition
|
|
297 ;; of file-newer-than-file-p
|
1330
|
298 (file-newer-than-file-p aa-lisp-mule aac-lisp-mule))
|
528
|
299 (setq need-to-recompile-mule-autoloads t))
|
|
300
|
|
301 (when (not (featurep 'mule))
|
|
302 ;; sorry charlie.
|
|
303 (setq need-to-rebuild-mule-autoloads nil
|
|
304 need-to-recompile-mule-autoloads nil))
|
|
305
|
428
|
306 (setq update-elc-files-to-compile (append update-elc-files-to-compile
|
622
|
307 (nreverse processed)))
|
428
|
308
|
1261
|
309 ;(print update-elc-files-to-compile)
|
428
|
310
|
1261
|
311 (let ((do-autoload-commands
|
|
312 (append
|
|
313 (if (or need-to-rebuild-autoloads
|
|
314 need-to-rebuild-mule-autoloads)
|
1330
|
315 (list "-l" "autoload"))
|
1261
|
316 (if need-to-rebuild-autoloads
|
2548
|
317 (list "-f" "batch-update-directory-autoloads"
|
1330
|
318 "auto" source-lisp))
|
1261
|
319 (if need-to-rebuild-mule-autoloads
|
2548
|
320 (list "-f" "batch-update-directory-autoloads"
|
1330
|
321 "mule" source-lisp-mule))
|
1261
|
322 (if need-to-recompile-autoloads
|
1330
|
323 (list "-f" "batch-byte-compile-one-file"
|
|
324 aa-lisp))
|
1261
|
325 (if need-to-recompile-mule-autoloads
|
1330
|
326 (list "-f" "batch-byte-compile-one-file"
|
|
327 aa-lisp-mule)))))
|
1298
|
328 (condition-case nil
|
3511
|
329 (delete-file (expand-file-name "src/REBUILD_AUTOLOADS" build-directory))
|
1298
|
330 (file-error nil))
|
1261
|
331 (cond ((and (not update-elc-files-to-compile)
|
|
332 (not need-to-rebuild-autoloads)
|
|
333 (not need-to-rebuild-mule-autoloads)
|
|
334 (not need-to-recompile-autoloads)
|
|
335 (not need-to-recompile-mule-autoloads))
|
1315
|
336 ;; (1) Nothing to do at all.
|
|
337 )
|
1298
|
338 ((not update-elc-files-to-compile)
|
1261
|
339 ;; (2) We have no files to byte-compile, but we do need to
|
1298
|
340 ;; regenerate and compile the auto-autoloads file, so signal
|
|
341 ;; update-elc-2 to do it. This is much faster than loading
|
|
342 ;; all the .el's and doing it here. (We only need to rebuild
|
|
343 ;; the autoloads here when we have files to compile, since
|
|
344 ;; they may depend on the updated autoloads.)
|
|
345 (condition-case nil
|
1330
|
346 (write-region-internal
|
3511
|
347 "foo" nil (expand-file-name "src/REBUILD_AUTOLOADS" build-directory))
|
1298
|
348 (file-error nil))
|
1315
|
349 )
|
1261
|
350 (t
|
|
351 (let ((bc-bootstrap
|
|
352 (mapcar #'(lambda (arg)
|
|
353 (concat (update-elc-chop-extension
|
|
354 (locate-library arg)) ".el"))
|
|
355 lisp-files-needed-for-byte-compilation))
|
|
356 (bootstrap-other
|
|
357 (mapcar #'(lambda (arg)
|
|
358 (concat (update-elc-chop-extension
|
|
359 (locate-library arg)) ".el"))
|
|
360 lisp-files-needing-early-byte-compilation)))
|
|
361 (setq inhibit-autoloads t)
|
528
|
362 ;; if bytecomp or byte-optimize need recompiling, then load
|
|
363 ;; the .el version of them first, recompile them, and reload
|
|
364 ;; the .elc versions to recompile everything else (so we won't
|
|
365 ;; be waiting until the cows come home). we need to set
|
|
366 ;; load-ignore-elc-files because byte-optimize gets autoloaded
|
|
367 ;; from bytecomp.
|
1261
|
368 (let ((recompile-bc-bootstrap
|
|
369 (apply #'nconc
|
|
370 (mapcar
|
|
371 #'(lambda (arg)
|
|
372 (when (member arg update-elc-files-to-compile)
|
|
373 (append '("-f" "batch-byte-compile-one-file")
|
|
374 (list arg))))
|
|
375 bc-bootstrap)))
|
|
376 (recompile-bootstrap-other
|
|
377 (apply #'nconc
|
|
378 (mapcar
|
|
379 #'(lambda (arg)
|
|
380 (when (member arg update-elc-files-to-compile)
|
|
381 (append '("-f" "batch-byte-compile-one-file")
|
|
382 (list arg))))
|
|
383 bootstrap-other))))
|
|
384 (mapc-internal
|
|
385 #'(lambda (arg)
|
|
386 (setq update-elc-files-to-compile
|
|
387 (delete arg update-elc-files-to-compile)))
|
|
388 (append bc-bootstrap bootstrap-other))
|
|
389 (setq command-line-args
|
|
390 (append
|
|
391 '("-l" "loadup-el.el" "run-temacs"
|
|
392 "-batch" "-no-packages" "-no-autoloads"
|
|
393 "-eval" "(setq stack-trace-on-error t)"
|
|
394 "-eval" "(setq load-always-display-messages t)")
|
|
395 (when recompile-bc-bootstrap
|
|
396 (append
|
|
397 '("-eval" "(setq load-ignore-elc-files t)"
|
|
398 "-l" "bytecomp")
|
|
399 recompile-bc-bootstrap
|
|
400 '("-eval" "(setq load-ignore-elc-files nil)")))
|
|
401 '("-l" "bytecomp")
|
|
402 ;; likewise, recompile autoload.el etc. if out-of-date.
|
|
403 recompile-bootstrap-other
|
|
404 ;; then generate autoloads for lisp and maybe lisp/mule.
|
|
405 do-autoload-commands
|
|
406 ;; now load the autoloads and compile alles anderes.
|
|
407 '("-eval" "(setq inhibit-autoloads nil)"
|
|
408 "-f" "startup-load-autoloads"
|
|
409 "-f" "batch-byte-compile")
|
|
410 update-elc-files-to-compile
|
|
411 ))))
|
|
412
|
|
413 ;;(print command-line-args)
|
|
414 (load "loadup-el.el"))))
|
428
|
415
|
1303
|
416 (kill-emacs)
|
428
|
417
|
|
418 ;;; update-elc.el ends here
|