aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r--gcc/gcc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c
index 96152de..832a2e0 100644
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -3154,8 +3154,13 @@ execute (void)
switch (WTERMSIG (status))
{
case SIGINT:
+ /* SIGQUIT and SIGKILL are not available on MinGW. */
+#ifdef SIGQUIT
case SIGQUIT:
+#endif
+#ifdef SIGKILL
case SIGKILL:
+#endif
case SIGTERM:
/* The user (or environment) did something to the
inferior. Making this an ICE confuses the user