diff --git a/CHANGELOG.md b/CHANGELOG.md index dc85ed6..41f8e34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## <0.11.0.1>.dev0 -- *Replace this line with new entries* +- Alwyays hide gdb console window on Windows. ## 0.11.0.0 diff --git a/pygdbmi/gdbcontroller.py b/pygdbmi/gdbcontroller.py index d4fa59a..ebe76d9 100644 --- a/pygdbmi/gdbcontroller.py +++ b/pygdbmi/gdbcontroller.py @@ -90,6 +90,7 @@ def spawn_new_gdb_subprocess(self) -> int: self.gdb_process = subprocess.Popen( self.command, shell=False, + creationflags=subprocess.CREATE_NO_WINDOW, stdout=subprocess.PIPE, stdin=subprocess.PIPE, stderr=subprocess.PIPE,