From 6180b3963ea5a38ef9f2f82bc53995e6dba349c1 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Tue, 17 Jul 2012 20:13:39 -0700 Subject: [PATCH] Remove comment about compiling with clang, which now works fine. --- src/lisp/Config.x86_common | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/src/lisp/Config.x86_common b/src/lisp/Config.x86_common index edf4476e8..ea52b94c5 100644 --- a/src/lisp/Config.x86_common +++ b/src/lisp/Config.x86_common @@ -45,23 +45,9 @@ ifdef FEATURE_UNICODE CPP_DEFINE_OPTIONS += -DUNICODE endif -# Default to using gcc +# Default to using gcc. But clang also works. CC = gcc -# But we can use clang. -# -# However, clang seems to want to use SSE instructions in various -# places, but we DON'T want that because we need a lisp that will run -# on chips without sse. -# -# But on Mac, every machine has SSE2 so we can use SSE2. However, -# there's some code path through GC or allocation where we aren't -# saving the FPU state so after GC or allocation, some XMM FP -# registers are corrupted. -# -# Got that? - -#CC = clang -mno-sse LD = ld -- GitLab