[git] CMU Common Lisp branch master updated. snapshot-2013-04-14-ga923563
Raymond Toy
rtoy at common-lisp.net
Sat May 4 19:35:41 UTC 2013
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 a923563fe3475ea90faa7e8e3c378436f41daa39 (commit)
from c6075ebc518f26e6e23ed7899110263f0b3544de (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 a923563fe3475ea90faa7e8e3c378436f41daa39
Author: Raymond Toy <toy.raymond at gmail.com>
Date: Sat May 4 12:35:32 2013 -0700
Clean up variables.
Config.sparc_common::
* Use += instead of = for CPPFLAGS and CFLAGS
Config.sparc_gcc:
* Move options from CC to CFLAGS.
Config.sparc_gcc:
* Move options from CC to CFLAGS.
* Add DEPEND_FLAGS with appropriate options.
diff --git a/src/lisp/Config.sparc_common b/src/lisp/Config.sparc_common
index 16f99fb..89e2de0 100644
--- a/src/lisp/Config.sparc_common
+++ b/src/lisp/Config.sparc_common
@@ -46,10 +46,10 @@ ifdef FEATURE_UNICODE
UNICODE = -DUNICODE
endif
-CPPFLAGS = -I. -I$(PATH1) -DSOLARIS -DSVR4 $(CC_V8PLUS) $(LINKAGE) $(GENCGC) $(UNICODE) $(SSE2)
+CPPFLAGS += -I. -I$(PATH1) -DSOLARIS -DSVR4 $(CC_V8PLUS) $(LINKAGE) $(GENCGC) $(UNICODE) $(SSE2)
-CFLAGS = -g $(CC_V8PLUS)
+CFLAGS += -g $(CC_V8PLUS)
NM = $(PATH1)/solaris-nm
ASSEM_SRC = sparc-assem.S
diff --git a/src/lisp/Config.sparc_gcc b/src/lisp/Config.sparc_gcc
index d08af18..da6d06e 100644
--- a/src/lisp/Config.sparc_gcc
+++ b/src/lisp/Config.sparc_gcc
@@ -24,7 +24,8 @@ endif
# and SIGSEGV) to lisp properly.
#
-CC = gcc -O -Wall
-CPP = gcc -E
+CC = gcc
+CPP = gcc
+CFLAGS += -O -Wall
DEPEND_FLAGS = -MM
ASFLAGS = -g -traditional-cpp $(AS_V8PLUS)
diff --git a/src/lisp/Config.sparc_sunc b/src/lisp/Config.sparc_sunc
index 1072f7b..e1614e6 100644
--- a/src/lisp/Config.sparc_sunc
+++ b/src/lisp/Config.sparc_sunc
@@ -20,7 +20,8 @@ CC_V8PLUS = -m32 -xarch=sparc
AS_V8PLUS = -m32 -xarch=sparc
endif
-CC = cc -xlibmieee -O
-CPP = cc -E
-DEPEND_FLAGS = -xM
+CC = cc
+CPP = cc
+CFLAGS += -xlibmieee -O
+DEPEND_FLAGS = -E -xM
ASFLAGS = $(AS_V8PLUS)
-----------------------------------------------------------------------
Summary of changes:
src/lisp/Config.sparc_common | 4 ++--
src/lisp/Config.sparc_gcc | 5 +++--
src/lisp/Config.sparc_sunc | 7 ++++---
3 files changed, 9 insertions(+), 7 deletions(-)
hooks/post-receive
--
CMU Common Lisp
More information about the cmucl-cvs
mailing list