Author: tkrasnukha Date: Sat Jul 7 07:58:13 2018 New Revision: 336483 URL: http://llvm.org/viewvc/llvm-project?rev=336483&view=rev Log: 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. Modified: lldb/trunk/tools/lldb-mi/MIDriverMain.cpp Modified: lldb/trunk/tools/lldb-mi/MIDriverMain.cpp URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/lldb-mi/MIDriverMain.cpp?rev=336483&r1=336482&r2=336483&view=diff ============================================================================== --- lldb/trunk/tools/lldb-mi/MIDriverMain.cpp (original) +++ lldb/trunk/tools/lldb-mi/MIDriverMain.cpp Sat Jul 7 07:58:13 2018 @@ -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> _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits