From 4b0563f89f939f2160002298d5491a8fc8ee1137 Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Mon, 23 Dec 2019 20:20:20 -0800 Subject: test: correct flags for Windows Adjust the flags for the LLDB test on Windows. This test was previously not running, but after the fix to the python detection, we now run this. --- lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lldb/packages/Python/lldbsuite') diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile b/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile index 9c2ed185109..fa147bb2096 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile +++ b/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile @@ -6,6 +6,8 @@ endif ifeq "$(OS)" "Darwin" LD_EXTRAS = -Xlinker -dead_strip +else ifeq "$(OS)" "Windows_NT" + CFLAGS_EXTRAS += /Gw /Gy else CFLAGS_EXTRAS += -fdata-sections -ffunction-sections LD_EXTRAS = -Wl,--gc-sections -- cgit v1.2.3