mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 09:16:02 +02:00
Bug 509737 - Disable full GDB console on Mac
Until we can figure out a nice fix for it. See bug for the findings so far. Hopefully this will just be a stopgap. Change-Id: Id4f7d91645fd25b140d3eb256da5ebdedc1d0e3f Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
This commit is contained in:
parent
b63342f10e
commit
6adc3c29a6
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ public class GDBBackend_7_12 extends GDBBackend {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isFullGdbConsoleSupported() {
|
public boolean isFullGdbConsoleSupported() {
|
||||||
return !Platform.getOS().equals(Platform.OS_WIN32)
|
return !Platform.getOS().equals(Platform.OS_WIN32) && !Platform.getOS().equals(Platform.OS_MACOSX)
|
||||||
&& !fPtyFailure;
|
&& !fPtyFailure;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue