Skip to content

Commit

Permalink
Bug 509737 - Disable full GDB console on Mac
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
MarkZ3 committed Jan 6, 2017
1 parent b63342f commit 6adc3c2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public GDBBackend_7_12(DsfSession session, ILaunchConfiguration lc) {

@Override
public boolean isFullGdbConsoleSupported() {
return !Platform.getOS().equals(Platform.OS_WIN32)
return !Platform.getOS().equals(Platform.OS_WIN32) && !Platform.getOS().equals(Platform.OS_MACOSX)
&& !fPtyFailure;
}

Expand Down

0 comments on commit 6adc3c2

Please sign in to comment.