0
|
1 #!/bin/sh
|
108
|
2 # update-elc.sh --- recompile all missing or out-of-date .elc files
|
0
|
3
|
70
|
4 # Author: Jamie Zawinski, Ben Wing, Martin Buchholz
|
|
5 # Maintainer: Martin Buchholz
|
108
|
6 # Keywords: recompile byte-compile .el .elc
|
0
|
7
|
181
|
8 # This file is part of XEmacs.
|
|
9
|
|
10 # XEmacs is free software; you can redistribute it and/or modify it
|
|
11 # under the terms of the GNU General Public License as published by
|
|
12 # the Free Software Foundation; either version 2, or (at your option)
|
|
13 # any later version.
|
|
14
|
|
15 # XEmacs is distributed in the hope that it will be useful, but
|
|
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
18 # General Public License for more details.
|
|
19
|
|
20 # You should have received a copy of the GNU General Public License
|
|
21 # along with XEmacs; see the file COPYING. If not, write to
|
|
22 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
23 # Boston, MA 02111-1307, USA.
|
|
24
|
0
|
25 ### Commentary:
|
70
|
26 ## Recompile all .elc files that need recompilation. Requires a
|
108
|
27 ## working version of "xemacs". Correctly handles the case where the
|
|
28 ## .elc files are missing; thus you can execute "rm lisp/*/*.elc"
|
70
|
29 ## before running this script. Run this from the parent of the
|
108
|
30 ## "lisp" directory, or another nearby directory.
|
0
|
31
|
108
|
32 set -e
|
0
|
33
|
70
|
34 # Try to find the lisp directory in several places.
|
108
|
35 # (Sun workspaces have an "editor" directory)
|
70
|
36 for dir in . .. ../.. editor ../editor ; do
|
108
|
37 if test -d $dir/lisp/. ; then cd $dir ; break ; fi
|
70
|
38 done
|
0
|
39
|
70
|
40 if test ! -d lisp/. ; then
|
108
|
41 echo "$0: Cannot find the \"lisp\" directory."
|
70
|
42 exit 1
|
0
|
43 fi
|
|
44
|
114
|
45 EMACS="./src/xemacs"
|
108
|
46 export EMACS
|
36
|
47
|
114
|
48 echo " (using $EMACS)"
|
|
49
|
|
50 # fuckin' sysv, man...
|
|
51 if [ "`uname -r | sed 's/\(.\).*/\1/'`" -gt 4 ]; then
|
|
52 echon()
|
|
53 {
|
|
54 /bin/echo $* '\c'
|
|
55 }
|
|
56 else
|
|
57 echon()
|
|
58 {
|
|
59 echo -n $*
|
|
60 }
|
|
61 fi
|
|
62
|
|
63 REAL=`cd \`dirname $EMACS\` ; pwd | sed 's|^/tmp_mnt||'`/`basename $EMACS`
|
263
|
64 BYTECOMP="$REAL -batch -vanilla "
|
114
|
65 echo "Recompiling in `pwd|sed 's|^/tmp_mnt||'`"
|
|
66 echo " with $REAL..."
|
|
67
|
263
|
68 $EMACS -batch -vanilla -l `pwd`/lisp/cleantree -f batch-remove-old-elc lisp
|
70
|
69
|
215
|
70 prune_vc="( -name '.*' -o -name SCCS -o -name RCS -o -name CVS ) -prune -o"
|
0
|
71
|
70
|
72 # $els is a list of all .el files
|
|
73 # $elcs is a list of all .elc files
|
108
|
74 els=/tmp/update-elc-1.$$ elcs=/tmp/update-elc-2.$$
|
70
|
75 rm -f $els $elcs
|
|
76 trap "rm -f $els $elcs" 0 1 2 3 15
|
80
|
77 find lisp/. $prune_vc -name '*.el' -print | sort > $els
|
|
78 find lisp/. $prune_vc -name '*.elc' -print | sed 's/elc$/el/' | sort > $elcs
|
70
|
79
|
0
|
80
|
114
|
81 echon "Deleting .elc files without .el files..."
|
108
|
82 comm -13 $els $elcs | sed -e '\!/vm.el!d' -e 's/el$/elc/' | \
|
70
|
83 while read file ; do echo rm "$file" ; rm "$file" ; done
|
114
|
84 echo done.
|
0
|
85
|
30
|
86
|
70
|
87 # Compute patterns to ignore when searching for files
|
155
|
88 ignore_dirs=""
|
177
|
89 ignore_pattern=''
|
0
|
90
|
70
|
91 # Only use Mule XEmacs to compile Mule-specific elisp dirs
|
114
|
92 echon "Checking for Mule support..."
|
84
|
93 lisp_prog='(princ (featurep (quote mule)))'
|
263
|
94 mule_p="`$EMACS -batch -vanilla -eval \"$lisp_prog\"`"
|
84
|
95 if test "$mule_p" = nil ; then
|
177
|
96 echo No
|
219
|
97 ignore_dirs="$ignore_dirs its egg mule language leim skk"
|
177
|
98 ignore_pattern='\!/tl/char-table.el$!d
|
|
99 \!/tl/chartblxmas.el$!d
|
197
|
100 \!/mu/latex-math-symbol.el$!d
|
177
|
101 '
|
140
|
102 else
|
84
|
103 echo Yes
|
70
|
104 fi
|
0
|
105
|
|
106 # first recompile the byte-compiler, so that the other compiles take place
|
|
107 # with the latest version (assuming we're compiling the lisp dir of the emacs
|
|
108 # we're running, which might not be the case, but often is.)
|
209
|
109 #echo "Checking the byte compiler..."
|
|
110 #$BYTECOMP -f batch-byte-recompile-directory lisp/bytecomp
|
0
|
111
|
70
|
112 # Prepare for byte-compiling directories with directory-specific instructions
|
217
|
113 # Not necessary any more, but I want to keep the text current to cut & paste
|
|
114 # into the package lisp maintenance tree.
|
227
|
115 #make_special_commands=''
|
|
116 #make_special () {
|
|
117 # dir="$1"; shift;
|
|
118 # ignore_dirs="$ignore_dirs $dir"
|
|
119 # make_special_commands="$make_special_commands \
|
|
120 #echo \"Compiling in lisp/$dir\"; \
|
|
121 #(cd \"lisp/$dir\" && ${MAKE:-make} EMACS=$REAL ${1+$*}); \
|
|
122 #echo \"lisp/$dir done.\";"
|
|
123 #}
|
219
|
124
|
227
|
125 #if test "$mule_p" != nil; then
|
|
126 # make_special skk all
|
|
127 #fi
|
30
|
128
|
177
|
129 ## AUCTeX is a package now
|
|
130 # if test "$mule_p" = nil ; then
|
|
131 # make_special auctex some
|
|
132 # else
|
|
133 # make_special auctex some MULE_ELC=tex-jp.elc
|
|
134 # fi
|
171
|
135 #make_special cc-mode all
|
207
|
136 # EFS is now packaged
|
|
137 # make_special efs x20
|
217
|
138 #make_special eos -k # not strictly necessary...
|
177
|
139 ## make_special gnus some # Now this is a package.
|
209
|
140 # hyperbole is now packaged
|
|
141 # make_special hyperbole elc
|
169
|
142 # We're not ready for the following, yet.
|
|
143 #make_special ilisp XEmacsELC=custom-load.elc elc
|
209
|
144 # ilisp is now packaged
|
|
145 # make_special ilisp elc
|
|
146 # oobr is now packaged
|
|
147 # make_special oobr HYPB_ELC='' elc
|
201
|
148 ## W3 is a package now.
|
|
149 #make_special w3 xemacs-w3
|
0
|
150
|
70
|
151 for dir in $ignore_dirs ; do
|
|
152 ignore_pattern="${ignore_pattern}/\\/$dir\\//d
|
|
153 /\\/$dir\$/d
|
|
154 "
|
|
155 done
|
0
|
156
|
70
|
157 # Other special-case filenames that don't get byte-compiled
|
|
158 ignore_pattern="$ignore_pattern"'
|
0
|
159 \!/,!d
|
|
160 \!/paths.el$!d
|
223
|
161 \!/loadup.el$!d
|
|
162 \!/loadup-el.el$!d
|
|
163 \!/update-elc.el$!d
|
|
164 \!/dumped-lisp.el$!d
|
|
165 \!/make-docfile.el$!d
|
0
|
166 \!/site-start.el$!d
|
|
167 \!/site-load.el$!d
|
|
168 \!/site-init.el$!d
|
|
169 \!/version.el$!d
|
261
|
170 \!/Installation.el$!d
|
70
|
171 '
|
0
|
172
|
70
|
173 echo "Compiling files without .elc..."
|
|
174 NUMTOCOMPILE=20 # compile this many files with each invocation
|
78
|
175 comm -23 $els $elcs | \
|
|
176 sed "$ignore_pattern" | \
|
|
177 xargs -t -n$NUMTOCOMPILE $BYTECOMP -f batch-byte-compile
|
70
|
178 echo "Compiling files without .elc... Done"
|
22
|
179
|
227
|
180 #if test "$mule_p" != nil; then
|
|
181 # eval "$make_special_commands"
|
|
182 #fi
|