Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f2164e31
Commit
f2164e31
authored
Oct 13, 2001
by
Gerd Moellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add --boot switch for bootstrapping. Logs to
EMACS_ROOT/boot.log, renames previous log file to boot.log.old.
parent
75a4e7c5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
admin/ChangeLog
admin/ChangeLog
+5
-0
admin/make-emacs
admin/make-emacs
+9
-0
No files found.
admin/ChangeLog
View file @
f2164e31
2001-10-13 Gerd Moellmann <gerd@gnu.org>
* make-emacs: Add --boot switch for bootstrapping. Logs to
EMACS_ROOT/boot.log, renames previous log file to boot.log.old.
2001-10-05 Gerd Moellmann <gerd@gnu.org>
* Branch for 21.1.
...
...
admin/make-emacs
View file @
f2164e31
...
...
@@ -49,6 +49,7 @@
"
malloc-check
"
=>
\
$malloc_check
,
"
no-mcheck
"
=>
\
$no_mcheck
,
"
alias
"
=>
\
$aliasing
,
"
boot
"
=>
\
$boot
,
"
wall
"
=>
\
$wall
,
"
gcc3
"
=>
\
$gcc3
,
"
trace-selection
"
=>
\
$trace_selection
,
...
...
@@ -64,6 +65,7 @@
--help show this help
--all make clean versionclean first
--boot make boostrap, log to boot.log
--enable-checking ENABLE_CHECKING=1 (implies Lisp union type)
--no-warn disable warnings
--check-marked GC_CHECK_MARKED_OBJECTS=1
...
...
@@ -168,6 +170,13 @@
$cc
=
"
/usr/bin/gcc
";
$cc
=
"
/gd/local/bin/gcc
"
if
$gcc3
;
if
(
$boot
)
{
chdir
"
..
";
system
"
mv boot.log boot.log.old
"
if
-
f
"
boot.log
";
exit
system
"
script boot.log
$make
CC=
\"
$cc
\"
CFLAGS=
\"
$opts
\"
bootstrap
";
}
exit
system
"
$make
CC=
\"
$cc
\"
CFLAGS=
\"
$opts
\"
@ARGV
";
# Local Variables:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment