comparison etc/gdbinit.in @ 4935:7ef913bf3c9a

modify gdbinit to track Makefile.in.in, add command for update-elc-2
author Ben Wing <ben@xemacs.org>
date Tue, 19 Jan 2010 01:24:21 -0600
parents e9ccbc62f7e7
children
comparison
equal deleted inserted replaced
4934:714f7c9fabb1 4935:7ef913bf3c9a
145 set env EMACSBOOTSTRAPMODULEPATH=../modules/:.. 145 set env EMACSBOOTSTRAPMODULEPATH=../modules/:..
146 end 146 end
147 147
148 define run-temacs 148 define run-temacs
149 environment-to-run-temacs 149 environment-to-run-temacs
150 run -nd -batch -l ../lisp/loadup.el run-temacs -q 150 run -nd -no-packages -batch -l ../lisp/loadup.el run-temacs -q
151 end 151 end
152 152
153 document run-temacs 153 document run-temacs
154 Usage: run-temacs 154 Usage: run-temacs
155 Run temacs interactively, like xemacs. 155 Run temacs interactively, like xemacs.
166 Run the test suite. Equivalent to 'make check'. 166 Run the test suite. Equivalent to 'make check'.
167 end 167 end
168 168
169 define check-temacs 169 define check-temacs
170 environment-to-run-temacs 170 environment-to-run-temacs
171 run -nd -batch -l ../lisp/loadup.el run-temacs -q -batch -l ../tests/automated/test-harness.el -f batch-test-emacs ../tests/automated 171 run -nd -no-packages -batch -l ../lisp/loadup.el run-temacs -q -batch -l ../tests/automated/test-harness.el -f batch-test-emacs ../tests/automated
172 end 172 end
173 173
174 document check-temacs 174 document check-temacs
175 Usage: check-temacs 175 Usage: check-temacs
176 Run the test suite on temacs. Equivalent to 'make check-temacs'. 176 Run the test suite on temacs. Equivalent to 'make check-temacs'.
178 or when temacs builds successfully, but xemacs does not. 178 or when temacs builds successfully, but xemacs does not.
179 end 179 end
180 180
181 define update-elc 181 define update-elc
182 environment-to-run-temacs 182 environment-to-run-temacs
183 run -nd -batch -l ../lisp/update-elc.el 183 run -nd -no-packages -batch -l ../lisp/update-elc.el
184 end 184 end
185 185
186 document update-elc 186 document update-elc
187 Usage: update-elc 187 Usage: update-elc
188 Run the core lisp byte compilation part of the build procedure. 188 Run the core lisp byte compilation part of the build procedure.
189 Use when debugging temacs, not xemacs! 189 Use when debugging temacs, not xemacs!
190 Use this when temacs builds successfully, but xemacs does not. 190 Use this when temacs builds successfully, but xemacs does not.
191 end 191 end
192 192
193 define update-elc-2
194 environment-to-run-temacs
195 run -no-packages -batch -no-autoloads -l update-elc-2.el -f batch-update-elc-2 ../lisp
196 end
197
198 document update-elc-2
199 Usage: update-elc-2
200 Run the post-dump core lisp byte compilation part of the build procedure.
201 end
202
193 define dmp 203 define dmp
194 environment-to-run-temacs 204 environment-to-run-temacs
195 run -nd -batch -l ../lisp/loadup.el dump 205 run -nd -no-packages -batch -l ../lisp/loadup.el dump
196 end 206 end
197 207
198 document dmp 208 document dmp
199 Usage: dmp 209 Usage: dmp
200 Run the dumping part of the build procedure. 210 Run the dumping part of the build procedure.