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 90530eaf3540c66bbcd445535b1cd9941bccbc3e (commit) from d9fb490192d3e187fae1b6a34b40b84e191f1e6f (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 90530eaf3540c66bbcd445535b1cd9941bccbc3e Author: Raymond Toy toy.raymond@gmail.com Date: Tue Jul 22 10:00:57 2014 -0700
Add sincos for x86 linux.
diff --git a/src/lisp/Config.x86_linux b/src/lisp/Config.x86_linux index 962c9e2..7b8caf9 100644 --- a/src/lisp/Config.x86_linux +++ b/src/lisp/Config.x86_linux @@ -16,7 +16,7 @@ OS_LINK_FLAGS += -Wl,-z,noexecstack
EXEC_FINAL_OBJ = exec-final.o
-OS_SRC += k_sin.c k_cos.c k_tan.c s_sin.c s_cos.c s_tan.c +OS_SRC += k_sin.c k_cos.c k_tan.c s_sin.c s_cos.c s_tan.c sincos.c
k_sin.o : k_sin.c $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $< @@ -31,3 +31,6 @@ 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) $< + +sincos.o : sincos.c + $(CC) -c $(CFLAGS) $(CPPFLAGS) $(CC_REM_PIO2) $<
-----------------------------------------------------------------------
Summary of changes: src/lisp/Config.x86_linux | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
hooks/post-receive