[Lldb-commits] [lldb] r248547 - [TestCppIncompleteTypes] Handle different archs when building a.o.

Siva Chandra via lldb-commits lldb-commits at lists.llvm.org
Thu Sep 24 15:13:36 PDT 2015


Author: sivachandra
Date: Thu Sep 24 17:13:36 2015
New Revision: 248547

URL: http://llvm.org/viewvc/llvm-project?rev=248547&view=rev
Log:
[TestCppIncompleteTypes] Handle different archs when building a.o.

Reviewers: chying

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D13147

Modified:
    lldb/trunk/test/lang/cpp/incomplete-types/Makefile

Modified: lldb/trunk/test/lang/cpp/incomplete-types/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/incomplete-types/Makefile?rev=248547&r1=248546&r2=248547&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/incomplete-types/Makefile (original)
+++ lldb/trunk/test/lang/cpp/incomplete-types/Makefile Thu Sep 24 17:13:36 2015
@@ -28,7 +28,7 @@ length_nolimit.o: length.cpp
 	$(CXX) $(CFLAGS_NO_LIMIT) length.cpp -o length_nolimit.o
 
 a.o: a.cpp
-	$(CXX) -c a.cpp -o a.o
+	$(CXX) $(CFLAGS_NO_DEBUG) -c a.cpp -o a.o
 
 clean: OBJECTS += limit nolimit length_limit.o length_nolimit.o
 




More information about the lldb-commits mailing list