Parcourir la source

* only define GDB_WINDOWS_ALWAYS_USE_ANOTHER_CONSOLE on Windows. This fixes
console output under Linux and other non-Windows platforms.

git-svn-id: trunk@30163 -

nickysn il y a 10 ans
Parent
commit
bf7785f567
1 fichiers modifiés avec 4 ajouts et 2 suppressions
  1. 4 2
      ide/globdir.inc

+ 4 - 2
ide/globdir.inc

@@ -217,5 +217,7 @@
   {$ifdef DEBUG}
     {$define GDB_RAW_OUTPUT}
   {$endif DEBUG}
-  {$define GDB_WINDOWS_ALWAYS_USE_ANOTHER_CONSOLE}
-{$endif GDBMI}
+  {$ifdef Windows}
+    {$define GDB_WINDOWS_ALWAYS_USE_ANOTHER_CONSOLE}
+  {$endif Windows}
+{$endif GDBMI}