diff options
| author | Eli Zaretskii | 2005-06-11 11:00:52 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-06-11 11:00:52 +0000 |
| commit | 5bc753e882174ee0865ba04feea55442b2418057 (patch) | |
| tree | c0ba8cace97626d95b19cf25fcf8b59c005c3bcb | |
| parent | dbbdb507ab437cba0ebfdcf9ef1efb76970869ff (diff) | |
| download | emacs-5bc753e882174ee0865ba04feea55442b2418057.tar.gz emacs-5bc753e882174ee0865ba04feea55442b2418057.zip | |
(ARCH_CFLAGS): Use $(MCPU_FLAG) instead of a literal "-mcpu=i686".
| -rw-r--r-- | nt/ChangeLog | 14 | ||||
| -rw-r--r-- | nt/gmake.defs | 2 |
2 files changed, 15 insertions, 1 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 9e30349388a..ff3674cef75 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog | |||
| @@ -1,3 +1,17 @@ | |||
| 1 | 2005-06-11 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * gmake.defs (ARCH_CFLAGS): Use $(MCPU_FLAG) instead of a literal | ||
| 4 | "-mcpu=i686". | ||
| 5 | |||
| 6 | * configure1.bat: Update copyright years. | ||
| 7 | Delete config.log before doing anything else. | ||
| 8 | Write additional diagnostics to config.log in case of failures to | ||
| 9 | compile test programs, including the failed test program itself. | ||
| 10 | Add a test for support of -mtune=pentium4 switch to GCC; if it is | ||
| 11 | supported, set up MCPU_FLAG variable on the various Makefiles to | ||
| 12 | use that switch during compilations. (This avoids GCC warning | ||
| 13 | about -mcpu being deprecated.) | ||
| 14 | |||
| 1 | 2005-06-10 Eli Zaretskii <eliz@gnu.org> | 15 | 2005-06-10 Eli Zaretskii <eliz@gnu.org> |
| 2 | 16 | ||
| 3 | * addsection.c (copy_executable_and_add_section): Pass non-zero | 17 | * addsection.c (copy_executable_and_add_section): Pass non-zero |
diff --git a/nt/gmake.defs b/nt/gmake.defs index bd201cd3314..23d3dac3719 100644 --- a/nt/gmake.defs +++ b/nt/gmake.defs | |||
| @@ -253,7 +253,7 @@ ifeq "$(ARCH)" "i386" | |||
| 253 | ifdef NOOPT | 253 | ifdef NOOPT |
| 254 | ARCH_CFLAGS = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN) | 254 | ARCH_CFLAGS = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN) |
| 255 | else | 255 | else |
| 256 | ARCH_CFLAGS = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN) -mcpu=i686 -O2 \ | 256 | ARCH_CFLAGS = -D_X86_=1 -c $(DEBUG_FLAG) $(NOCYGWIN) $(MCPU_FLAG) -O2 \ |
| 257 | # -fbuiltin \ | 257 | # -fbuiltin \ |
| 258 | # -finline-functions \ | 258 | # -finline-functions \ |
| 259 | # -fomit-frame-pointer | 259 | # -fomit-frame-pointer |