Mercurial > emacs
annotate INSTALL-CVS @ 52698:367c1b29dbee
(gdb-var-list, gdb-var-changed, gdb-update-flag)
(gdb-update-flag): New variables.
(gdb-var-update, gdb-var-update-handler,gdb-var-delete)
(gdb-speedbar-expand-node, gdb-var-evaluate-expression-handler)
(gud-watch, gdb-var-create-handler) : New functions.
(gdb-var-list-children, gdb-var-list-children-handler)
(gdb-var-create-regexp, gdb-var-update-regexp)
(gdb-var-list-children-regexp): New constants.
(gud-gdba-command-name): Don't specify -noasync so that GDB/MI
works.
(gdb-annotation-rules): Reduced annotation set (level 3).
(gdb-pre-prompt, gdb-prompt): Call handler in gdb-prompt.
(gdb-post-prompt): Don't update GDB buffers every time speedbar
updates.
(gdb-window-height, gdb-window-width, gdb-display-in-progress)
(gdb-expression-buffer-name, gdb-display-number, gdb-point)
(gdb-dive-display-number, gdb-nesting-level, gdb-expression)
(gdb-annotation-arg, gdb-dive-map, gdb-values, gdb-array-start)
(gdb-array-stop, gdb-array-slice-map, gdb-display-string)
(gdb-array-size, gdb-display-mode-map, gdb-expressions-mode-map):
(gdb-expressions-mode-menu, gdb-dive): Remove variables.
(gud-display, gud-display1)
(gdb-display-begin,gdb-display-number-end, gdb-delete-line)
(gdb-display-end, gdb-display-go-back, gdb-array-section-end)
(gdb-field-begin, gdb-field-end, gdb-elt,gdb-field-format-begin)
(gdb-field-format-end, gdb-dive, gdb-dive-new-frame)
(gdb-insert-field, gdb-array-format, gdb-mouse-array-slice)
(gdb-array-slice, gdb-array-format1, gdb-info-display-custom)
(gdb-delete-frames, gdb-display-mode, gdb-display-buffer-name)
(gdb-display-display-buffer, gdb-toggle-display)
(gdb-delete-display, gdb-expressions-popup-menu)
(gdb-expressions-mode, gdb-array-visualise): Remove functions.
(gdb-setup-windows, gdb-reset, gdb-source-info): Remove references
to display buffer.
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Tue, 30 Sep 2003 17:56:24 +0000 |
parents | 88cd9cfe5459 |
children | 7bea35b48a17 |
rev | line source |
---|---|
45852 | 1 Building and Installing Emacs from CVS |
2 | |
3 Some of the files that are included in the Emacs tarball, such as | |
4 byte-compiled Lisp files, are not stored in the CVS repository. | |
5 Therefore, to build from CVS you must run "make bootstrap" | |
6 instead of just "make": | |
7 | |
8 $ ./configure | |
9 $ make bootstrap | |
10 | |
11 The bootstrap process makes sure all necessary files are rebuilt | |
12 before it builds the final Emacs binary. | |
13 | |
14 Normally, it is not necessary to use "make bootstrap" after every CVS | |
15 update. Unless there are problems, we suggest the following | |
16 procedure: | |
17 | |
18 $ ./configure | |
19 $ make | |
20 $ cd lisp | |
21 $ make recompile EMACS=../src/emacs | |
22 $ cd .. | |
23 $ make | |
24 | |
25 (If you want to install the Emacs binary, type "make install" instead | |
26 of "make" in the last command.) | |
27 | |
28 If the above procedure fails, try "make bootstrap". | |
29 | |
30 Users of non-Posix systems (MS-Windows etc.) should run the | |
31 platform-specific configuration scripts (nt/configure.bat, config.bat, | |
32 etc.) before "make bootstrap" or "make"; the rest of the procedure is | |
33 applicable to those systems as well. | |
34 | |
35 Note that "make bootstrap" overwrites some files that are under CVS | |
36 control, such as lisp/loaddefs.el. This could produce CVS conflicts | |
37 next time that you resync with the CVS. If you see such conflicts, | |
38 overwrite your local copy of the file with the clean version from the | |
39 CVS repository. For example: | |
40 | |
41 cvs update -C lisp/loaddefs.el | |
42 | |
50100
ca7aa82d6f39
*** empty log message ***
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
45852
diff
changeset
|
43 Questions, requests, and bug reports about the CVS versions of Emacs |
52584
88cd9cfe5459
Clear up the last paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50100
diff
changeset
|
44 should be sent to emacs-pretest-bug@gnu.org rather than gnu.emacs.help |
88cd9cfe5459
Clear up the last paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50100
diff
changeset
|
45 or gnu.emacs.bug. Ideally, use M-x report-emacs-bug RET which will |
88cd9cfe5459
Clear up the last paragraph.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50100
diff
changeset
|
46 send it to the proper place. |