[Lldb-commits] [lldb] r181239 - Fix typo in C++11 flag for the GCC 4.6 code path: missing '-'

Daniel Malea daniel.malea at intel.com
Mon May 6 12:31:31 PDT 2013


Author: dmalea
Date: Mon May  6 14:31:31 2013
New Revision: 181239

URL: http://llvm.org/viewvc/llvm-project?rev=181239&view=rev
Log:
Fix typo in C++11 flag for the GCC 4.6 code path: missing '-'


Modified:
    lldb/trunk/test/lldbtest.py

Modified: lldb/trunk/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbtest.py?rev=181239&r1=181238&r2=181239&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Mon May  6 14:31:31 2013
@@ -1117,7 +1117,7 @@ class Base(unittest2.TestCase):
             or LLDB.framework).
         """
         if "gcc" in self.getCompiler() and "4.6" in self.getCompilerVersion():
-          stdflag = "std=c++0x"
+          stdflag = "-std=c++0x"
         else:
           stdflag = "-std=c++11"
 





More information about the lldb-commits mailing list