1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-30 12:25:35 +02:00

Remove interim version of GDB for full console

Now that GDB 7.12 is released, there is no need to support an interim
version.

Change-Id: I7ccfb6b544023468c7511841890d20ea6cf2f5bf
This commit is contained in:
Marc Khouzam 2016-11-06 21:43:42 -05:00
parent 56c496ba5a
commit c31b45b5cc

View file

@ -231,9 +231,7 @@ public class GdbDebugServicesFactory extends AbstractDsfDebugServicesFactory {
}
protected IMIBackend createBackendGDBService(DsfSession session, ILaunchConfiguration lc) {
if (compareVersionWith(GDB_7_12_VERSION) >= 0
|| compareVersionWith("7.11.50") >= 0 // TODO remove once GDB 7.12 is released
) {
if (compareVersionWith(GDB_7_12_VERSION) >= 0) {
return new GDBBackend_7_12(session, lc);
}
return new GDBBackend(session, lc);