From 5fe0da6d7bcda22b03c470bef030030fa2d6d6f0 Mon Sep 17 00:00:00 2001 From: Muhammad Omair Javaid Date: Thu, 30 Jun 2022 12:25:43 +0400 Subject: [PATCH] [LLDB] Fix TestSTL.py on Windows TestSTL.py was broken by 9c6e04359282e9051f7b2744b99266ece32db001. This patch fixes it with changes to its Makefile. --- lldb/test/API/lang/cpp/stl/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lldb/test/API/lang/cpp/stl/Makefile b/lldb/test/API/lang/cpp/stl/Makefile index 4617d67..3c20771 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 -- 2.7.4