]> git.pld-linux.org Git - packages/fpc.git/blob - fpc-gdb.patch
- fixes from fedora, rel 2
[packages/fpc.git] / fpc-gdb.patch
1 --- fpcbuild-2.6.4/fpcsrc/packages/gdbint/src/gdbint.pp~        2016-04-01 17:53:51.000000000 +0900
2 +++ fpcbuild-2.6.4/fpcsrc/packages/gdbint/src/gdbint.pp 2016-04-01 23:08:14.978738263 +0900
3 @@ -59,6 +59,42 @@
4  
5  {$undef GDB_VERSION_RECOGNIZED}
6  
7 +{ 8.0 }
8 +{$ifdef GDB_V800}
9 +  {$info using gdb 8.0.x}
10 +  {$define GDB_VERSION_RECOGNIZED}
11 +  {$define GDB_VER_GE_800}
12 +  {$define NEED_EXTERNAL_CVAR}
13 +  {$LINKLIB stdc++}
14 +  {$LINKLIB gcc_s}
15 +{$endif}
16 +
17 +{$ifdef GDB_VER_GE_800}
18 +  {$define GDB_VER_GE_711}
19 +{$endif}
20 +
21 +{ 7.11.x }
22 +{$ifdef GDB_V711}
23 +  {$info using gdb 7.11.x}
24 +  {$define GDB_VERSION_RECOGNIZED}
25 +  {$define GDB_VER_GE_711}
26 +{$endif}
27 +
28 +{$ifdef GDB_VER_GE_711}
29 +  {$define GDB_VER_GE_710}
30 +{$endif}
31 +
32 +{ 7.10.x }
33 +{$ifdef GDB_V710}
34 +  {$info using gdb 7.10.x}
35 +  {$define GDB_VERSION_RECOGNIZED}
36 +  {$define GDB_VER_GE_710}
37 +{$endif}
38 +
39 +{$ifdef GDB_VER_GE_710}
40 +  {$define GDB_VER_GE_709}
41 +{$endif}
42 +
43  { 7.9.x }
44  {$ifdef GDB_V709}
45    {$info using gdb 7.9.x}
This page took 0.089253 seconds and 3 git commands to generate.