summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2019-12-23 20:20:20 -0800
committerSaleem Abdulrasool <compnerd@compnerd.org>2019-12-23 20:21:26 -0800
commit4b0563f89f939f2160002298d5491a8fc8ee1137 (patch)
tree9a285405945202a51f616e9857cb284e03b02ce1 /lldb/packages/Python/lldbsuite
parent1399281d58f4424130fb0f28d3b7db95d338406a (diff)
downloadbcm5719-llvm-4b0563f89f939f2160002298d5491a8fc8ee1137.tar.gz
bcm5719-llvm-4b0563f89f939f2160002298d5491a8fc8ee1137.zip
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.
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r--lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile2
1 files changed, 2 insertions, 0 deletions
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
OpenPOWER on IntegriCloud