[git] CMU Common Lisp branch master updated. snapshot-2014-06-93-gb424b78
Raymond Toy
rtoy at common-lisp.net
Tue Aug 5 01:59:20 UTC 2014
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMU Common Lisp".
The branch, master has been updated
via b424b78d3e33bf8438a364920c5a2987aa0cacb8 (commit)
from 75d14d2ed7dc9085858d9119013b67fbdfe77390 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit b424b78d3e33bf8438a364920c5a2987aa0cacb8
Author: Raymond Toy <toy.raymond at gmail.com>
Date: Mon Aug 4 18:59:06 2014 -0700
Remove -mtune=generic from Config.x86_common.
Netbsd apparently doesn't like this, so we're moving that option to
the linux and darwin config files.
Reported by Robert Swindells.
diff --git a/src/lisp/Config.x86_common b/src/lisp/Config.x86_common
index ad2b1a0..1873f7d 100644
--- a/src/lisp/Config.x86_common
+++ b/src/lisp/Config.x86_common
@@ -54,7 +54,7 @@ CPP_INCLUDE_OPTIONS := -I. -I$(PATH1) -I-
endif
CPPFLAGS := $(CPP_DEFINE_OPTIONS) $(CPP_INCLUDE_OPTIONS)
-CFLAGS += -Wstrict-prototypes -Wall -O2 -g -mtune=generic
+CFLAGS += -Wstrict-prototypes -Wall -O2 -g
ASFLAGS = -g
ASSEM_SRC = x86-assem.S
diff --git a/src/lisp/Config.x86_darwin b/src/lisp/Config.x86_darwin
index 39c09bd..7de9ef2 100644
--- a/src/lisp/Config.x86_darwin
+++ b/src/lisp/Config.x86_darwin
@@ -6,7 +6,7 @@ include Config.x86_common
MIN_VER = -mmacosx-version-min=10.5
CPPFLAGS += -DDARWIN $(MIN_VER) -m32
-CFLAGS += -g3
+CFLAGS += -g3 -mtune=generic
ASFLAGS += -g3 $(MIN_VER)
diff --git a/src/lisp/Config.x86_linux b/src/lisp/Config.x86_linux
index cba5ec6..f43ac53 100644
--- a/src/lisp/Config.x86_linux
+++ b/src/lisp/Config.x86_linux
@@ -1,7 +1,8 @@
# -*- Mode: makefile -*-
include Config.x86_common
-CPPFLAGS += -m32 -rdynamic -D__NO_CTYPE -D_GNU_SOURCE -march=pentium4 -mfpmath=sse
+CPPFLAGS += -D__NO_CTYPE -D_GNU_SOURCE
+CFLAGS += -m32 -rdynamic -march=pentium4 -mfpmath=sse -mtune=generic
UNDEFSYMPATTERN = -Xlinker -u -Xlinker &
ASSEM_SRC += linux-stubs.S
-----------------------------------------------------------------------
Summary of changes:
src/lisp/Config.x86_common | 2 +-
src/lisp/Config.x86_darwin | 2 +-
src/lisp/Config.x86_linux | 3 ++-
3 files changed, 4 insertions(+), 3 deletions(-)
hooks/post-receive
--
CMU Common Lisp
More information about the cmucl-cvs
mailing list