diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2018-04-29 09:28:11 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2018-04-29 09:28:11 -0700 |
commit | bf12cc6c7830937b4c1a3df46294e74bea749a5f (patch) | |
tree | 26d1469538c00c5aa4c3aa49752126ed1f29f1de /nt | |
parent | a0aac5741ec27465145fbb283bf095352ba19b58 (diff) | |
download | emacs-bf12cc6c7830937b4c1a3df46294e74bea749a5f.tar.gz |
Advise CFLAGS= operand, not in environment, when configuring
Diffstat (limited to 'nt')
-rw-r--r-- | nt/INSTALL | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/nt/INSTALL b/nt/INSTALL index d2e5e99c0c9..67069429901 100644 --- a/nt/INSTALL +++ b/nt/INSTALL @@ -52,7 +52,8 @@ build will run on Windows 9X and newer systems). You can pass other options to the configure script. Here's a typical example (for an in-place debug build): - CFLAGS='-O0 -g3' ./configure --prefix=/d/usr/emacs --enable-checking='yes,glyphs' + ./configure --prefix=/d/usr/emacs --enable-checking='yes,glyphs' \ + CFLAGS='-O0 -g3' 3. After the configure script finishes, it should display the resulting configuration. After that, type @@ -461,7 +462,8 @@ build will run on Windows 9X and newer systems). A few frequently used options are needed when you want to produce an unoptimized binary with runtime checks enabled: - CFLAGS='-O0 -g3' ./configure --prefix=PREFIX --enable-checking='yes,glyphs' + ./configure --prefix=PREFIX --enable-checking='yes,glyphs' \ + CFLAGS='-O0 -g3' Once invoked, the configure script will run for some time, and, if successful, will eventually produce a summary of the configuration |