blob: af6de092e41ee36db01b328203540b0fb2f53f4c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- passes/cmds/bugpoint.cc.orig 2025-09-21 18:06:28 UTC
+++ passes/cmds/bugpoint.cc
@@ -22,13 +22,14 @@
#if defined(_WIN32)
# include <csignal>
+#endif
+
# define WIFEXITED(x) 1
# define WIFSIGNALED(x) 0
# define WIFSTOPPED(x) 0
# define WEXITSTATUS(x) ((x) & 0xff)
# define WTERMSIG(x) SIGTERM
# define WSTOPSIG(x) 0
-#endif
USING_YOSYS_NAMESPACE
using namespace RTLIL_BACKEND;
|