[Lldb-commits] [lldb] 5fe0da6 - [LLDB] Fix TestSTL.py on Windows

Muhammad Omair Javaid via lldb-commits lldb-commits at lists.llvm.org
Thu Jun 30 02:27:34 PDT 2022


Author: Muhammad Omair Javaid
Date: 2022-06-30T13:27:14+04:00
New Revision: 5fe0da6d7bcda22b03c470bef030030fa2d6d6f0

URL: https://github.com/llvm/llvm-project/commit/5fe0da6d7bcda22b03c470bef030030fa2d6d6f0
DIFF: https://github.com/llvm/llvm-project/commit/5fe0da6d7bcda22b03c470bef030030fa2d6d6f0.diff

LOG: [LLDB] Fix TestSTL.py on Windows

TestSTL.py was broken by 9c6e04359282e9051f7b2744b99266ece32db001.
This patch fixes it with changes to its Makefile.

Added: 
    

Modified: 
    lldb/test/API/lang/cpp/stl/Makefile

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/lang/cpp/stl/Makefile b/lldb/test/API/lang/cpp/stl/Makefile
index 4617d67aca299..3c20771e6dba6 100644
--- a/lldb/test/API/lang/cpp/stl/Makefile
+++ b/lldb/test/API/lang/cpp/stl/Makefile
@@ -1,4 +1,5 @@
 CXX_SOURCES := main.cpp
-CFLAGS := -g -O0
+
+DEBUG_INFO_FLAG := -gdwarf -O0
 
 include Makefile.rules


        


More information about the lldb-commits mailing list