diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2019-12-23 20:20:20 -0800 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2019-12-23 20:21:26 -0800 |
commit | 4b0563f89f939f2160002298d5491a8fc8ee1137 (patch) | |
tree | 9a285405945202a51f616e9857cb284e03b02ce1 /lldb/packages/Python/lldbsuite | |
parent | 1399281d58f4424130fb0f28d3b7db95d338406a (diff) | |
download | bcm5719-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/Makefile | 2 |
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 |