This revision was automatically updated to reflect the committed changes.
Closed by commit rL248547: [TestCppIncompleteTypes] Handle different archs when 
building a.o. (authored by sivachandra).

Changed prior to commit:
  http://reviews.llvm.org/D13147?vs=35678&id=35679#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D13147

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

Index: lldb/trunk/test/lang/cpp/incomplete-types/Makefile
===================================================================
--- lldb/trunk/test/lang/cpp/incomplete-types/Makefile
+++ lldb/trunk/test/lang/cpp/incomplete-types/Makefile
@@ -28,7 +28,7 @@
        $(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
 


Index: lldb/trunk/test/lang/cpp/incomplete-types/Makefile
===================================================================
--- lldb/trunk/test/lang/cpp/incomplete-types/Makefile
+++ lldb/trunk/test/lang/cpp/incomplete-types/Makefile
@@ -28,7 +28,7 @@
 	$(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
 
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to