Use Win32 MessageBox for asserts on cygwin
This commit is contained in:
parent
c39745060e
commit
c8119885fa
|
@ -3,6 +3,10 @@
|
||||||
#include "exception.hh"
|
#include "exception.hh"
|
||||||
#include "debug.hh"
|
#include "debug.hh"
|
||||||
|
|
||||||
|
#if defined(__CYGWIN__)
|
||||||
|
#include <windows.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
|
@ -24,8 +28,19 @@ void on_assert_failed(const char* message)
|
||||||
String debug_info = "pid: " + to_string(getpid());
|
String debug_info = "pid: " + to_string(getpid());
|
||||||
write_debug("assert failed: '"_str + message + "' " + debug_info);
|
write_debug("assert failed: '"_str + message + "' " + debug_info);
|
||||||
|
|
||||||
int res = system(("xmessage -buttons 'quit:0,ignore:1' '"_str +
|
const auto msg = message + "\n[Debug Infos]\n"_str + debug_info;
|
||||||
message + "\n[Debug Infos]\n" + debug_info + "'").c_str());
|
#if defined(__CYGWIN__)
|
||||||
|
int res = MessageBox(NULL, msg.c_str(), "Kakoune: assert failed",
|
||||||
|
MB_OKCANCEL | MB_ICONERROR);
|
||||||
|
switch (res)
|
||||||
|
{
|
||||||
|
case IDCANCEL:
|
||||||
|
throw assert_failed(message);
|
||||||
|
case IDOK:
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
int res = system(("xmessage -buttons 'quit:0,ignore:1' '" + msg + "'").c_str());
|
||||||
switch (res)
|
switch (res)
|
||||||
{
|
{
|
||||||
case -1:
|
case -1:
|
||||||
|
@ -34,6 +49,7 @@ void on_assert_failed(const char* message)
|
||||||
case 1:
|
case 1:
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user