From 8e6b39d80e9f8db8389bd2a8106d0f64b91c19e9 Mon Sep 17 00:00:00 2001 From: Axel Souchet <0vercl0k@tuxfamily.org> Date: Sun, 9 Sep 2018 06:11:00 -0700 Subject: Adds Windows support and AppVeyor CI (#835) * Get miasm to work on Windows, also add AppVeyor CI * Fix gcc jitter on Linux * Make the dse_crackme tests work on Windows * calling build and then install is less confusing than install twice * fix os.rename race condition on Windows * clean it up * Clean up after the unused cl.exe's artifacts * Use is_win instead of an additional check * Fix issue on Windows where 'w' and 'wb' modes are different * Address review feedback * setuptools is actually not required, so reverting --- miasm2/jitter/vm_mngr_py.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'miasm2/jitter/vm_mngr_py.h') diff --git a/miasm2/jitter/vm_mngr_py.h b/miasm2/jitter/vm_mngr_py.h index 3c7c487b..e2e43c65 100644 --- a/miasm2/jitter/vm_mngr_py.h +++ b/miasm2/jitter/vm_mngr_py.h @@ -1,7 +1,9 @@ #ifndef VM_MNGR_PY_H #define VM_MNGR_PY_H - +#ifdef _WIN32 +#define SIGALRM 0 +#endif typedef struct { PyObject_HEAD -- cgit 1.4.1