From 8b7f5ee5f05a0972802055204a423009d3398a0d Mon Sep 17 00:00:00 2001 From: Muhammad Omair Javaid Date: Thu, 30 Jun 2022 14:01:30 +0400 Subject: [PATCH] [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. --- lldb/test/API/lang/cpp/stl/Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/lldb/test/API/lang/cpp/stl/Makefile b/lldb/test/API/lang/cpp/stl/Makefile index 3c20771..99998b2 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 -- 2.7.4