3 # Copyright (C) 2001 Free Software Foundation, Inc.
5 # This file is part of GNU Emacs.
7 # GNU Emacs is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
12 # GNU Emacs is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs; see the file COPYING. If not, write to the
19 # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 # Boston, MA 02111-1307, USA.
22 # Build Emacs with various options for profiling, debugging,
23 # with and without warnings enabled etc.
30 # Default CVS sandbox directory. Only used when called from outside
33 $root = $ENV{"EMACS_ROOT"};
34 $root = "/gd/gnu/emacs" unless $root;
36 # Default make command.
38 $make = $ENV{"EMACS_MAKE"};
39 $make = "gmake" unless $make;
41 $rc = GetOptions
("help" => \
$help,
42 "enable-checking" => \
$enable_checking,
43 "no-warn" => \
$no_warn,
44 "check-marked" => \
$check_marked,
46 "no-optim" => \
$no_optim,
47 "union-type" => \
$union_type,
49 "malloc-check" => \
$malloc_check,
50 "no-mcheck" => \
$no_mcheck,
51 "alias" => \
$aliasing,
54 "trace-selection" => \
$trace_selection,
55 "stabs" => \
$use_stabs,
58 if ($rc == 0 || $help)
61 make-emacs [options] ...
66 --all make clean versionclean first
67 --enable-checking ENABLE_CHECKING=1 (implies Lisp union type)
68 --no-warn disable warnings
69 --check-marked GC_CHECK_MARKED_OBJECTS=1
70 --optim no debug defines
71 --gprof make Emacs for profiling
72 --union-type define USE_LISP_UNION_TYPE (bad for GDB)
73 --malloc-check define GC_MALLOC_CHECK
74 --no-mcheck dont define GC_MCHECK
75 --wall compile with -Wall
76 --gcc3 use GCC 3.0 (30% slower compilation, slower code)
77 --trace-selection print traces in xselect.c
78 --stabs use -gstabs instead -g
80 Default is to compile with warnings, with -DGC_MCHECK=1, and
87 # Chdir to the top-level directory of the tree. If not in a tree
88 # containing Emacs, use the default.
90 while (! -f
"src/emacs.c" && cwd
() ne "/")
95 chdir $root if cwd
() eq "/";
97 print "Build in ", cwd
(), "\n";
99 # If first arg is `all' or if `--all' specified, ensure a clean
102 if (@ARGV && $ARGV[0] eq "all")
108 system ("$make clean versionclean") if $all;
116 $warn = "-Wpointer-arith -Wchar-subscripts -Wformat -Wimplicit-int";
117 $warn = "$warn -Wreturn-type -Wswitch -Wuninitialized";
120 $defs = "-DGLYPH_DEBUG=1" unless $optim;
121 $defs = "$defs -DGC_CHECK_MARKED_OBJECTS=1" if $check_marked;
122 $defs = "$defs -DENABLE_CHECKING=1" if $enable_checking;
127 $defs = "$defs -DPROFILING=1";
141 $defs = "$defs -DUSE_LISP_UNION_TYPE" if $union_type;
142 $defs = "$defs -DGC_MALLOC_CHECK=1 -DGC_PROTECT_MALLOC_STATE=1" if $malloc_check;
143 $defs = "$defs -DGC_MCHECK=1" unless $no_mcheck;
145 $defs = "$defs -DTRACE_SELECTION" if $trace_selection;
147 # arch=pentium leads to slightly faster code than without.
148 $opts = "$opts -march=pentiumpro";
152 $opts = "$opts -pipe -O3";
156 $opts = "$opts -pipe -fno-inline";
160 $opts = "$opts -O -pipe -fno-inline";
163 $opts = "$opts -fstrict-aliasing" if $aliasing;
165 $opts = "$opts $defs" if $defs;
166 $opts = "$opts $warn" if $warn;
168 $cc = "/usr/bin/gcc";
169 $cc = "/gd/local/bin/gcc" if $gcc3;
171 exit system "$make CC=\"$cc\" CFLAGS=\"$opts\" @ARGV";