diff options
| author | Tatyana Krasnukha <tatyana@synopsys.com> | 2018-07-07 14:58:13 +0000 |
|---|---|---|
| committer | Tatyana Krasnukha <tatyana@synopsys.com> | 2018-07-07 14:58:13 +0000 |
| commit | 2bdcf581c1c045d3ea39f5a8a5ac40b0801b884a (patch) | |
| tree | aa9b7ea1e49dbf831333f2aa82bc703e25ed3be0 | |
| parent | 7382cf8225fba96579d322964694ad2d64fe4de4 (diff) | |
| download | bcm5719-llvm-2bdcf581c1c045d3ea39f5a8a5ac40b0801b884a.tar.gz bcm5719-llvm-2bdcf581c1c045d3ea39f5a8a5ac40b0801b884a.zip | |
Fix build on Windows with SDK build version >= 17134.
Platform.h doesn't define signal() and SIGINT since commit r263858. Code was compiled successfully because signal.h didn't have "ifndef" include guard in previous versions of Windows SDK. Now it does.
llvm-svn: 336483
| -rw-r--r-- | lldb/tools/lldb-mi/MIDriverMain.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lldb/tools/lldb-mi/MIDriverMain.cpp b/lldb/tools/lldb-mi/MIDriverMain.cpp index eda67782ad6..3b382913a6b 100644 --- a/lldb/tools/lldb-mi/MIDriverMain.cpp +++ b/lldb/tools/lldb-mi/MIDriverMain.cpp @@ -26,11 +26,6 @@ // MICmdBase.h / .cpp // MICmdCmd.h / .cpp -#if defined(_MSC_VER) -#define _INC_SIGNAL // Stop window's signal.h being included - - // CODETAG_IOR_SIGNALS -#endif // _MSC_VER - // Third party headers: #include "lldb/API/SBHostOS.h" #include <atomic> |

