[git] CMU Common Lisp branch master updated. snapshot-2014-06-12-g203b0b0

Raymond Toy rtoy at common-lisp.net
Tue Jul 22 17:26:48 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  203b0b0144dec1a5f481ada67792040e4a485f21 (commit)
      from  90530eaf3540c66bbcd445535b1cd9941bccbc3e (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 203b0b0144dec1a5f481ada67792040e4a485f21
Author: Raymond Toy <toy.raymond at gmail.com>
Date:   Tue Jul 22 10:25:07 2014 -0700

    For consistency with sincos, we need to include the fdlibm trig
    functions on Darwin/x86 even though Darwin's libm is accurate.

diff --git a/src/lisp/Config.x86_darwin b/src/lisp/Config.x86_darwin
index 2af8d77..3dcdc61 100644
--- a/src/lisp/Config.x86_darwin
+++ b/src/lisp/Config.x86_darwin
@@ -18,13 +18,22 @@ OS_LIBS =
 
 EXEC_FINAL_OBJ = exec-final.o
 
-OS_SRC += sincos.c k_sin.o k_cos.o
+OS_SRC += k_sin.c k_cos.c k_tan.c s_sin.c s_cos.c s_tan.c sincos.c
 
-sincos.o : sincos.c
+k_sin.o : k_sin.c
+	$(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $<
+k_cos.o : k_cos.c
+	$(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $<
+k_tan.o : k_tan.c
 	$(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $<
 
-k_sin.o : k_sin.c
+s_sin.o : s_sin.c
+	$(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $<
+s_cos.o : s_cos.c
+	$(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $<
+s_tan.o : s_tan.c
 	$(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $<
 
-k_cos.o : k_cos.c
+sincos.o : sincos.c
 	$(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $<
+

-----------------------------------------------------------------------

Summary of changes:
 src/lisp/Config.x86_darwin |   17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMU Common Lisp



More information about the cmucl-cvs mailing list