[Lldb-commits] [lldb] r138391 - /lldb/trunk/test/make/Makefile.rules

Johnny Chen johnny.chen at apple.com
Tue Aug 23 14:54:11 PDT 2011


Author: johnny
Date: Tue Aug 23 16:54:10 2011
New Revision: 138391

URL: http://llvm.org/viewvc/llvm-project?rev=138391&view=rev
Log:
Make clang the default compiler for building the test programs.

Modified:
    lldb/trunk/test/make/Makefile.rules

Modified: lldb/trunk/test/make/Makefile.rules
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/make/Makefile.rules?rev=138391&r1=138390&r2=138391&view=diff
==============================================================================
--- lldb/trunk/test/make/Makefile.rules (original)
+++ lldb/trunk/test/make/Makefile.rules Tue Aug 23 16:54:10 2011
@@ -23,14 +23,14 @@
 endif
 
 #----------------------------------------------------------------------
-# CC defaults to gcc.
+# CC defaults to clang.
 # See also these functions:
 #   o cxx_compiler
 #   o cxx_linker
 #----------------------------------------------------------------------
-CC ?= gcc
+CC ?= clang
 ifeq "$(CC)" "cc"
-	CC = gcc
+	CC = clang
 endif
 
 #----------------------------------------------------------------------





More information about the lldb-commits mailing list