[Lldb-commits] [lldb] 8b7f5ee - [LLDB] Fix TestSTL.py Makefile to remove -gdwarf O0
Muhammad Omair Javaid via lldb-commits
lldb-commits at lists.llvm.org
Thu Jun 30 03:07:16 PDT 2022
Author: Muhammad Omair Javaid
Date: 2022-06-30T14:06:21+04:00
New Revision: 8b7f5ee5f05a0972802055204a423009d3398a0d
URL: https://github.com/llvm/llvm-project/commit/8b7f5ee5f05a0972802055204a423009d3398a0d
DIFF: https://github.com/llvm/llvm-project/commit/8b7f5ee5f05a0972802055204a423009d3398a0d.diff
LOG: [LLDB] Fix TestSTL.py Makefile to remove -gdwarf O0
This is a follow up to my previous commit where TestSTL.py got broken
due to 9c6e04359282e9051f7b2744b99266ece32db001.
Now that we force dwarf symbols by default on windows we dont need to
specifically put -gdwarf O0 in debug flags for this test.
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 3c20771e6dba..99998b20bcb0 100644
--- a/lldb/test/API/lang/cpp/stl/Makefile
+++ b/lldb/test/API/lang/cpp/stl/Makefile
@@ -1,5 +1,3 @@
CXX_SOURCES := main.cpp
-DEBUG_INFO_FLAG := -gdwarf -O0
-
include Makefile.rules
More information about the lldb-commits
mailing list