[Lldb-commits] [lldb] r301277 - Fixed two bad Makefiles that might be breaking Linux.

Sean Callanan via lldb-commits lldb-commits at lists.llvm.org
Mon Apr 24 16:49:06 PDT 2017


Author: spyffe
Date: Mon Apr 24 18:49:06 2017
New Revision: 301277

URL: http://llvm.org/viewvc/llvm-project?rev=301277&view=rev
Log:
Fixed two bad Makefiles that might be breaking Linux.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/llvm-style/Makefile
    lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/symbols/Makefile

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/llvm-style/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/llvm-style/Makefile?rev=301277&r1=301276&r2=301277&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/llvm-style/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/llvm-style/Makefile Mon Apr 24 18:49:06 2017
@@ -1,3 +1,3 @@
 LEVEL = ../../../make
-C_SOURCES := main.c
+CXX_SOURCES := main.cpp
 include $(LEVEL)/Makefile.rules
\ No newline at end of file

Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/symbols/Makefile
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/symbols/Makefile?rev=301277&r1=301276&r2=301277&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/symbols/Makefile (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/symbols/Makefile Mon Apr 24 18:49:06 2017
@@ -1,3 +1,3 @@
 LEVEL = ../../../make
-C_SOURCES := main.c
+CXX_SOURCES := main.cpp
 include $(LEVEL)/Makefile.rules




More information about the lldb-commits mailing list