diff --git "a/28644964.csv" "b/28644964.csv"
deleted file mode 100644--- "a/28644964.csv"
+++ /dev/null
@@ -1,5464 +0,0 @@
-issuekey,created,title,description,storypoints
-91500846,2006-09-23 00:12:37.000,C calling convention broken when passing structures larger than two integers.,"
-
Original Reporter info from Mantis: Flawless
-
-- **Reporter name:** Christian Iversen
-
-
-## Description:
-
-If a structure is passed by value rather than reference, and is larger than 2 integers, and the calling convention is cdecl, the call will fail.
-
-On page 13 and 16 in this pdf file:
-
-http://www.agner.org/optimize/calling_conventions.pdf
-
-it's quite clearly shown that objects larger than two registers should always be passed on the stack for cdecl (at least on linux, I think the rules are different for windows).
-
-fpc currently tries to pass all 5 arguments in the example program in registers, which causes it to fail.
-
-## Steps to reproduce:
-
-compile gcc program with: gcc -masm=intel -fverbose-asm -save-temps -c test.c
-compile fpc program with: fpc -al testp.pas
-
-testp.pas:
-``` pascal
-program testp;
-
-uses
- ctypes, vorbis;
-
-{$LINKLIB 'c'}
-{$LINK 'test'}
-
-function ov_open_callbacks_foo(datasource: pointer; var vf: OggVorbis_File; initial: pointer; ibytes: clong; callbacks: ov_callbacks): cint; cdecl; external;
-
-var
- vf: OggVorbis_File;
- cb: ov_callbacks;
-begin
- cb.read := read_func(pointer(10));
- cb.seek := seek_func(pointer(20));
- cb.close := close_func(pointer(30));
- cb.tell := tell_func(pointer(40));
- ov_open_callbacks_foo(pointer(1), vf, pointer(3), 4, cb);
-end.
-```
-
-
-\#include &LtPos;stdio.h>
-\#include &LtPos;vorbis/vorbisfile.h>
-
-int ov_open_callbacks_foo(void *datasource, OggVorbis_File *vf, char *initial, long ibytes, ov_callbacks callbacks) {
-``` printf(""%p:%p:%p:%d:%p\n"", datasource, vf, initial, ibytes, callbacks);```
-}
-
-## Mantis conversion info:
-
-- **Mantis ID:** 7453
-- **OS:** Linux
-- **OS Build:** 2.6.15
-- **Build:** [2006/09/21] for x86_64
-- **Platform:** Amd64
-- **Version:** 2.2.0
-- **Fixed in version:** 2.2.0
-- **Fixed in revision:** 4688 (#360cbe1de1d45d93d439b067ed9e7f9f43515194)",100
-91499912,2006-07-22 20:10:31.000,pthread_cond_timedwait is called with wrong timespec,"
-Original Reporter info from Mantis: crossbuilder
-
-- **Reporter name:** Burkhard Carstens
-
-
-## Description:
-
-In rtl/unix/cthreads.pp line 552 ff, timespec is created from the value of timeout. According to ""man pthread_cond_wait"" and my tests, it should be now+timeout. iow, this is meant to specify the absolute time, when the timeout should ocour rather than a relative timeout.
-The way it is now, this allwas gives a time in the past, therefore this call allways returns immediately.
-
-
-## Mantis conversion info:
-
-- **Mantis ID:** 7196
-- **OS:** linux
-- **OS Build:** suse 10.0
-- **Build:** 4277
-- **Platform:** i386
-- **Version:** 2.2.0",300
-94434348,2021-09-28 09:29:21.395,Incorrect fillchar call,"I have found 4 instances where fillchar is called with incorrect parameters:
-
-```
-compiler\fmodule.pas (338,9) Fillchar(current_filepos,0,sizeof(current_filepos));
-packages\rtl-console\src\win\video.pp (778,3) FillChar (VioMode, 0, SizeOf (VioMode));
-packages\winceunits\src\windbase.pp (534,3) fillchar(pguid,0,sizeof(CEGUID));
-rtl\os2\systhrd.inc (253,2) FillChar (DataIndex^^, 0, ThreadVarBlockSize);
-```
-
-These may not be causing any direct harm but they could cause random problems that will be hard to diagnose so they should be fixed.",100
-91557944,2021-06-07 21:57:48.000,Optimizer leads to wrong short boolean code generation,"
-Original Reporter info from Mantis: Pierre @PierreMuller
-
-- **Reporter name:** Pierre Muller
-
-
-## Description:
-
-``` Reported by Tobias Giesen on fpc-pascal mailinglist, 2021/05/30```
-
-Hello,
-it seems that the newest 32-bit FPC sometimes creates complete Boolean Evaluation
-rather than partial, which causes my application to crash. My context is like this:
-
-``` pascal
-type BOOL=LongBool;
- PBOOL=^LongBool;
-
-function DoSomething(const Cancel:PBOOL=nil);
-begin
- if Assigned(Cancel) and Cancel^ then
- Exit;
- end;
-```
-
-This crashes because Cancel and Cancel^ are always evaluated, even if Cancel is nil.
-
-It works fine in 64-bit.
-
-Is this a known problem?
-
-Cheers,
-Tobias
-
-I modified this to a simple test, which shows that x86_64 3.2.2 release compiler
-also generates wrong code for this simple source!
-
-## Steps to reproduce:
-
-muller@gcc10:~/pas/check$ fpc -gl -O2 test-complete-boolean.pp -al
-Free Pascal Compiler version 3.2.2 [2021/05/16] for x86_64
-Copyright (c) 1993-2021 by Florian Klaempfl and others
-Note: Switching assembler to default source writing assembler
-Target OS: Linux for x86-64
-Compiling test-complete-boolean.pp
-Assembling program
-Linking test-complete-boolean
-26 lines compiled, 0.2 sec
-1 note(s) issued
-muller@gcc10:~/pas/check$ ./test-complete-boolean
-First try
-2nd try
-Runtime error 216 at $00000000004001E2
-``` $00000000004001E2 DOSOMETHING, line 8 of test-complete-boolean.pp```
-
-## Additional information:
-
-muller@gcc10:~/pas/check$ cat test-complete-boolean.pp
-{$mode objfpc}
-
-type BOOL=LongBool;
-``` PBOOL=^LongBool;```
-
-``` pascal
-procedure DoSomething(const Cancel:PBOOL=nil);
-begin
- if Assigned(Cancel) and Cancel^ then
- Exit;
- writeln('Cancel is false');
-end;
-
-var
- b : BOOL;
- pb : PBOOL;
-begin
- b:=true;
- pb:=@b;
- Writeln('First try');
- DoSomething(pb);
- pb:=nil;
- Writeln('2nd try');
- DoSomething(pb);
- Writeln('3rd try');
- DoSomething;
-end.
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 38973
-- **OS:** At least MacOS and Linux
-- **Version:** 3.2.2",100
-91557867,2021-05-21 20:01:38.000,Crash in TWriter with read only class property = nil,"
-Original Reporter info from Mantis: Martin @martin_frb
-
-- **Reporter name:** Martin Friebe
-
-
-## Description:
-
-Trying to write a component with a readonly class property that is nil will crash in WriteProperty
-
-
-```
-#0 CLASSES$_$TWRITER_$__$$_WRITEPROPERTY$TPERSISTENT$POINTER+275 at :0
-#1 CLASSES$_$TWRITER_$__$$_WRITEPROPERTIES$TPERSISTENT+116 at :0
-#2 CLASSES$_$TWRITER_$__$$_WRITECOMPONENTDATA$TCOMPONENT+151 at :0
-#3 CLASSES$_$TWRITER_$__$$_WRITEDESCENDENT$TCOMPONENT$TCOMPONENT+51 at :0
-#4 SYSTEM_$$_MAIN_WRAPPER$POINTER$POINTER$$INT64+6 at :0
-```
-
-
-``` pascal
-procedure TWriter.WriteProperty(Instance: TPersistent; PropInfo: Pointer);
-....
- PropType := PPropInfo(PropInfo)^.PropType;
- if not Assigned(PPropInfo(PropInfo)^.SetProc) then begin
- if PropType^.Kind<>tkClass then
- exit;
- ObjValue := TObject(GetObjectProp(Instance, PropInfo));
- if not ObjValue.InheritsFrom(TComponent) or
- not (csSubComponent in TComponent(ObjValue).ComponentStyle) then
- exit;
- end;
-```
-
-
-ObjValue will be nil.
-
-The code should have ""not assigned(ObjValue) or"" added:
-
-```
- if not assigned(ObjValue) or
- not ObjValue.InheritsFrom(TComponent) or
- not (csSubComponent in TComponent(ObjValue).ComponentStyle) then
- exit;
-```
-
-## Steps to reproduce:
-
-``` pascal
-program Project1;
-{$mode objfpc}{$H+}
-uses
- Classes;
-
-type
-
- TMyComponent = class(TComponent)
- private
- FFoo: TComponent;
- published
- property ReadOnly: TComponent read FFoo; // will be nil
- end;
-
-var
- strm: TMemoryStream;
- Driver: TAbstractObjectWriter;
- Writer: TWriter;
- Reader: TReader;
- o: TMyComponent;
-begin
- o := TMyComponent.Create(nil);
-
- strm := TMemoryStream.Create;
- Driver := TBinaryObjectWriter.Create(strm,4096);
- Writer := TWriter.Create(Driver);
- Writer.WriteRootComponent(o);
- Driver.Free;
- Writer.Free;
-
- strm.Free;
-end.
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 38920
-- **OS:** win 10
-- **OS Build:** 10
-- **Platform:** 64bit Intel
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 49389 (#61cd38e6db176dd006be6adb8c6c350011a8b108)
-- **Target version:** 4.0.0",100
-91557524,2021-04-02 01:05:27.000,[Patch] AArch64 incorrect number generation fix,"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-This patch fixes a bug in AArch64's a_load_const_reg routine where certain constants were not encoded properly. This, ironically, manifested in a_load_const_reg itself and caused inefficient (but correct) code generation for other numbers.
-
-## Steps to reproduce:
-
-Apply patch and confirm both correct code compilation and more efficient constant generation in the system unit's disassembly (among other things).
-
-## Additional information:
-
-In the aforementioned a_load_const_reg routine, the constant $0000FFFFFFFEFFFF was instead generated as $FFFEFFFFFFFEFFFF, causing a case block to not be evaluated correctly. The class of numbers that were incorrectly encoded are those where replacing the upper 16 bits with the 2nd lowest 16 bits produced a valid shifter constant, since this could be encoded compactly as (using $0000FFFFFFFEFFFF as an example):
-
-```
- orr x0,xzr,0xFFFEFFFFFFFEFFFF
- movk x0,0,lsl 48
-```
-
-Previously, the ""movk"" instruction was erroneously omitted if the upper 16 bits were zero.
-
-\----
-
-For an inefficient code example, the System unit had many such constants - for the number 18.874,385 ($01200011):
-
-```
- movn x1,65518
- movk x1,288,lsl 16
- movk x1,0,lsl 32
- movk x1,0,lsl 48
-```
-
-This patch now allows the routine to properly encode the constant as expected:
-
-```
- movz x1,17
- movk x1,288,lsl 16
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 38695
-- **OS:** LInux (Raspberry Pi OS)
-- **OS Build:** 5.4.51-v8+
-- **Build:** r49099
-- **Platform:** aarch64-linux
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 49104 (#f0023a3b04a3873759c66b7053bb053f2b771775)",100
-91555984,2020-11-25 01:02:12.000,Wrong code generated on x86-64,"
-Original Reporter info from Mantis: runewalsh
-
-- **Reporter name:**
-
-
-## Description:
-
-Code below should write ""#######... 70%"", but depending on compiler settings it writes garbage or even crashes.
-I have this happening on x86-64-win64 with optimization levels greater than -O1.
-
-Bug vanishes after replacing
-pChar(result)[i] :=
-with conventional
-result[1 + i] :=
-
-or after removing the second condition part, i. e.
-(i = int32(divs) - 1) and (progress >= 1)
-
-or after replacing any of 32-bit variables with 64-bit equivalent
-
-so I can't even come close to guessing what's going on here.
-
-## Steps to reproduce:
-
-``` pascal
-function Bar(const progress: single; divs: uint32): string;
-const
- BarSym: array[boolean] of char = ('.', '#');
-var
- i: int32;
-begin
- SetLength(result, divs);
- for i := 0 to int32(divs) - 1 do
- pChar(result)[i] := BarSym[(progress >= (0.75 + i) / divs) or (i = int32(divs) - 1) and (progress >= 1)];
-end;
-
-var
- s: string;
-
-begin
- writeln(Bar(0.7, 10) + ' 70%');
-end.
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 38129
-- **Build:** 63950
-- **Platform:** x86-64-win64
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 49095 (#cc64d9eb4e036d8185c75393c21968cdbbb73e87)
-- **Monitored by:** » Vincent (Vincent Snijders), » @MageSlayer (Denis Golovan), » @CuriousKit (J. Gareth Moreton)",200
-91555947,2020-11-22 17:25:10.000,[Patch] ARM -CriotR crash fix,"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-This patch fixes a build error when making the compiler under -CriotR options on arm platforms. The fault was due to RedundantMovProcess(p,hpfar1) causing hpfar1 to become a dangling pointer while still returning False (since p wasn't changed). To compensate and to ensure maximal compiler performance, the 2nd parameter of RedundantMovProcess is now a var parameter and if the instruction is removed, it is set to nil, hence causing hpfar1 to become nil which can be easily detected (in which case, the control flow returns to the beginning of the new 'while' loop, which previously was an 'if' statement that caused the subroutine to exit if hpfar1 couldn't be set).
-
-## Steps to reproduce:
-
-Apply patch and confirm correct compilation, both normally and under -CriotR conditions.
-
-## Additional information:
-
-Due to the construction of the while loop, the compiler is now sometimes more efficient under -O1 and -O2. For example, in the Classes disassembly:
-
-```
-.section .text.n_classes$_$tstream_$__$$_setsize64$int64,""ax""
- .balign 4
-.globl CLASSES$_$TSTREAM_$__$$_SETSIZE64$INT64
- .type CLASSES$_$TSTREAM_$__$$_SETSIZE64$INT64,#function
-CLASSES$_$TSTREAM_$__$$_SETSIZE64$INT64:
- stmfd r13!,{r3,r14}
- mov r1,r0 ; <-- Not optimal
- ldr r1,[r1]
- ldr r1,[r1, 124]
- blx r1
- ldmfd r13!,{r3,r15}
-.Le38:
- .size CLASSES$_$TSTREAM_$__$$_SETSIZE64$INT64, .Le38 - CLASSES$_$TSTREAM_$__$$_SETSIZE64$INT64
-```
-
-Under the patch:
-
-```
-.section .text.n_classes$_$tstream_$__$$_setsize64$int64,""ax""
- .balign 4
-.globl CLASSES$_$TSTREAM_$__$$_SETSIZE64$INT64
- .type CLASSES$_$TSTREAM_$__$$_SETSIZE64$INT64,#function
-CLASSES$_$TSTREAM_$__$$_SETSIZE64$INT64:
- stmfd r13!,{r3,r14}
- ldr r1,[r0] ; <-- Optimised
- ldr r1,[r1, 124]
- blx r1
- ldmfd r13!,{r3,r15}
-.Le38:
- .size CLASSES$_$TSTREAM_$__$$_SETSIZE64$INT64, .Le38 - CLASSES$_$TSTREAM_$__$$_SETSIZE64$INT64
-```
-
-
-## Mantis conversion info:
-
-- **Mantis ID:** 38116
-- **OS:** Linux (Raspberry Pi OS)
-- **OS Build:** 5.4.51-v8+
-- **Build:** r47529
-- **Platform:** arm (32-bit)
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 47531 (#1014e530813f01757a6ee4b4b16518fe2a7206e1)",100
-91554532,2020-08-12 07:16:11.000,AArch64 generates incorrect code for some immediate values,"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-So I've been looking at improving some of the Arm-64 code generated when assigning values to variables, and I was a bit shocked to discover that a number of said assignments produce incorrect code, usually changing the immediate value to -1.
-
-## Steps to reproduce:
-
-Write and run the following program:
-
-``` pascal
-program BadValue;
-begin
- WriteLn($FFFFFFFBFFFFFFFF)
-end.
-```
-
-Observe output to be -1, and the generated assembly language for the actual parameter to be something like ""movn x2, #0x0, lsl 32"" (this is meant to write something to the 33nd to 48th bits, but just writes all zeroes then inverts the entire register, producing $FFFFFFFFFFFFFFFF = -1)
-
-## Additional information:
-
-I have fixed the bug and made a comprehensive test, but am waiting on the test suite to finish running. However, my fix is embedded among my general improvements to MOV commands.
-
-This bug is present in FPC 3.0.4 and the trunk.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 37554
-- **OS:** Linux (Raspberry Pi OS)
-- **OS Build:** 5.4.51-v8+
-- **Build:** r46353
-- **Platform:** aarch64
-- **Version:** 3.0.4
-- **Fixed in revision:** 46401 (#4faea3a1869969c91c3a17f891f88a24fa1219f3),46402 (#352489c397080a5acab70ec57836256de380dfb0)",100
-91554448,2020-08-09 11:53:35.000,X86_64 code optimization,"
-Original Reporter info from Mantis: avk @avk959
-
-- **Reporter name:** avk
-
-
-## Description:
-
-In some cases, when using optimization level 2 and above, FPC generates a completely inoperable code (seemingly starting with revision 45801). Unfortunately, I have no other example besides the one attached.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 37527
-- **OS Build:** any
-- **Build:** 46337
-- **Platform:** x86_64
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Monitored by:** » @CuriousKit (J. Gareth Moreton)",100
-91552142,2020-03-08 23:12:07.000,Internal Error 200405231 raised when manually compiling Lazarus,"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-When attempting to manually build Lazarus (I do so in order to test peephole optimisations), I get internal error 200405231, thus blocking me from doing any further work on the compiler.
-
-## Steps to reproduce:
-
-Run the following from your Lazarus source directory, replacing directories to match your personal system:
-
-\\pp\bin\x86_64-win64\ppcx64 -Mobjfpc -FEC:\Users\NLO-012\Documents\Programming\lazarus -g- -Xs -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-db\src\sqldb -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\libtar\src -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fpmkunit\src -FuC:\Users\NLO-012\Documents\Programming\lazarus\packager -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fppkg\src -FuC:\Users\NLO-012\Documents\Programming\fpc\compiler\systems -FlC:\Users\NLO-012\Documents\Programming\fpc\units\x86_64-win64\rtl -FuC:\Users\NLO-012\Documents\Programming\fpc\rtl\win64 -FiC:\Users\NLO-012\Documents\Programming\fpc\rtl\inc -FiC:\Users\NLO-012\Documents\Programming\fpc\rtl\win -FiC:\Users\NLO-012\Documents\Programming\fpc\rtl\win64 -FiC:\Users\NLO-012\Documents\Programming\fpc\rtl\x86_64 -FiC:\Users\NLO-012\Documents\Programming\fpc\rtl\win\wininc -FuC:\Users\NLO-012\Documents\Programming\fpc\rtl\win -FiC:\Users\NLO-012\Documents\Programming\fpc\rtl\objpas\sysutils -FiC:\users\NLO-012\Documents\Programming\lazarus\ide\include -FuC:\Users\NLO-012\Documents\Programming\fpc\rtl\inc -FuC:\Users\NLO-012\Documents\Programming\fpc\rtl\objpas -FuC:\users\NLO-012\Documents\Programming\lazarus\lcl\interfaces\win32 -FuC:\users\NLO-012\Documents\Programming\lazarus\components\lazutils -FiC:\Users\NLO-012\Documents\Programming\fpc\rtl\objpas\classes -FuC:\users\NLO-012\Documents\Programming\fpc\packages\rtl-objpas\src\inc -FuC:\users\NLO-012\Documents\Programming\fpc\packages\fcl-base\src -FuC:\users\NLO-012\Documents\Programming\lazarus\lcl -FuC:\users\NLO-012\Documents\Programming\fpc\packages\fcl-image\src -FiC:\users\NLO-012\Documents\Programming\lazarus\lcl\include -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\winunits-base\src -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\rtl-objpas\src\win -FiC:\Users\NLO-012\Documents\Programming\fpc\packages\rtl-objpas\src\inc -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\paszlib\src -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\hash\src -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\pasjpeg\src -FuC:\users\NLO-012\Documents\Programming\lazarus\lcl\widgetset -FuC:\users\NLO-012\Documents\Programming\lazarus\components\lazutils -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-process\src -FiC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-process\src\win -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\chm\src -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-json\src -FuC:\users\NLO-012\Documents\Programming\lazarus\lcl\forms -FuC:\users\NLO-012\Documents\Programming\lazarus\components\codetools -FiC:\users\NLO-012\Documents\Programming\lazarus\ide\include\win64 -FuC:\users\NLO-012\Documents\Programming\lazarus\components\ideintf -FuC:\users\NLO-012\Documents\Programming\lazarus\components\lazcontrols -FuC:\users\NLO-012\Documents\Programming\lazarus\components\debuggerintf -FuC:\users\NLO-012\Documents\Programming\lazarus\debugger -FuC:\users\NLO-012\Documents\Programming\lazarus\components\synedit -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-registry\src -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\regexpr\src -FuC:\users\NLO-012\Documents\Programming\lazarus\packager\registration -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-db\src\base -FuC:\users\NLO-012\Documents\Programming\lazarus\components\ideintf -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-res\src -FuC:\users\NLO-012\Documents\Programming\lazarus\packager -FuC:\users\NLO-012\Documents\Programming\lazarus\designer -FuC:\users\NLO-012\Documents\Programming\lazarus\ide\frames -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-xml\src -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-extra\src\win -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\winunits-jedi\src -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-db\src\dbase -FiC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-process\src\winall -FiC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-base\src\win -FuC:\users\NLO-012\Documents\Programming\lazarus\components\lazdebuggergdbmi -FuC:\users\NLO-012\Documents\Programming\lazarus\debugger\frames -FuC:\users\NLO-012\Documents\Programming\lazarus\converter -FuC:\users\NLO-012\Documents\Programming\lazarus\packager\frames -vs C:\Users\NLO-012\Documents\Programming\lazarus\ide\lazarus.pp -B -a -s -O2
-
-## Additional information:
-
-The compiler was built using the following command line:
-
-make distclean all install DATA2INC=C:\Users\NLO-012\Documents\Programming\fpc\utils\bin\x86_64-win64\data2inc.exe OPT=""-O4""
-
-Find attached my error log (generated by specifying ""> errorlog.log 2>&1"" after the command above.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 36775
-- **OS:** Microsoft Windows
-- **OS Build:** 10 Professional
-- **Build:** r44289
-- **Platform:** x86_64-win64
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 46220 (#c17ad509e2c3589a781f96da8128eb3f23188806),46274 (#2500f8432f418c5485c55ad4eb4ea8d084fa71fe)
-- **Monitored by:** » 0h2o (0h2o), » @SAmeis (Simon Ameis), » Dean Qin (Dean Qin), » @jpuhl (Julian Puhl)",100
-91551153,2020-02-05 02:43:24.000,"""make all"" crashes on i386-win32 when OPT=""-CriotR"" is specified.","
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-When attempting to make the compiler under i386-win32 with all the debugging checks enabled, an access violation is triggered during the bootstrapping cycle.
-
-## Steps to reproduce:
-
-call ""make clean all install OS_TARGET=win32 CPU_TARGET=i386 OPT=""-CriotR"" under i386-win32 - observe access violation when it attempts to compile the WPO segment of the bootstrapping cycle.
-
-## Additional information:
-
-I'm really hoping this isn't due to one of my optimisations!
-
-Doesn't appear to occur under x86_64-win64.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 36660
-- **OS:** Microsoft Windows
-- **OS Build:** 10 Professional
-- **Build:** r44105
-- **Platform:** i386-win32
-- **Version:** 3.3.1",100
-91550998,2020-01-16 13:19:36.000,compiler: svn rev 43949 broke building i386-win32,"
-Original Reporter info from Mantis: AntonK
-
-- **Reporter name:** Anton Kavalenka
-
-
-## Description:
-
-C:/fpc-3.0.0/bin/i386-win32/ppc386.exe -Ur -Xs -O2 -n -Fi../inc -Fi../i386 -Fi../win -FE. -FUC:/projects/fpc/rtl/units/i386-win32 -di386 -dRELEASE -Us -Sg system.pp -Fi../win
-cpummprocs.inc(1,40) Error: Identifier not found ""__m128""
-....
-cpummprocs.inc(29,43) Error: Identifier not found ""__m128""
-cpummprocs.inc(29,43) Fatal: There were 50 errors compiling module, stopping
-Fatal: Compilation aborted
-
-## Mantis conversion info:
-
-- **Mantis ID:** 36593
-- **OS:** Microsoft Windows
-- **OS Build:** 10 Professional
-- **Build:** r43960
-- **Platform:** i386
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 43967 (#81848157808ef123a1cb244b71d366abeee39aa7)
-- **Monitored by:** » Cyrax (Cyrax)",300
-91550860,2020-01-07 19:47:07.000,FPC does not build with -Os option,"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-As of revision r43880, the Free Pascal Compiler does not build under i386 and x86_64, failing at the ppc2 stage with access violations.
-
-e.g. from i386-win32:
-
-C:/Users/NLO-012/Documents/Programming/fpc/compiler/ppc2.exe -Ur -Xs -O2 -n -Fi../inc -Fi../i386 -Fi../win -FE. -FUC:/Users/NLO-012/Documents/Programming/fpc/rtl/units/i386-win32 -Os -di386 -dRELEASE -Us -Sg system.pp -Fi../win
-system.pp(132,4) Error: Compilation raised exception internally
-Fatal: Compilation aborted
-An unhandled exception occurred at $004879F9:
-```
-EAccessViolation: Access violation
- $004879F9
- $00479C8B
- $004CAB19
- $004CCB99
- $004CD024
- $00434D72
- $00413E55
-```
-
-An unhandled exception occurred at $00419A11:
-```
-EAccessViolation: Access violation
- $00419A11
- $00419A9A
- $0040BC61
- $77458DA2
- $77458D74
- $77444216
- $00479C8B
- $004CAB19
- $004CCB99
- $004CD024
- $00434D72
- $00413E55
-```
-
-## Steps to reproduce:
-
-Pull a fresh copy of the SVN trunk (r43880 or r43881) and attempt to run ""make clean all install OPT=-Os""
-
-## Additional information:
-
-Personally confirmed broken for i386-win32, x86_64-win64, i386-linux and x86_64-linux (the last two via Ubuntu).
-
-## Mantis conversion info:
-
-- **Mantis ID:** 36530
-- **OS:** Microsoft Windows
-- **OS Build:** 10 Professional
-- **Build:** r43880
-- **Platform:** i386 and x86_64
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 43888 (#11287f018fbf940beed20d4e1c0c09f9b872a006)",200
-91550821,2020-01-03 08:22:04.000,Lazarus does not build as of r43826,"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-As of the most recent trunk for both FPC and Lazarus (and also earlier versions of the latter), the IDE does not build successfully, whether via using make or by building it manually. The following errors occur (taken from x86_64-win64 with paths stripped):
-
-compiler_compilation_options.pas(395,18) Error: (3205) Illegal qualifier
-compiler_compilation_options.pas(421,18) Error: (3205) Illegal qualifier
-compiler_compilation_options.pas(442) Fatal: (10026) There were 2 errors compiling module, stopping
-Fatal: (1018) Compilation aborted
-
-## Steps to reproduce:
-
-Build the latest version of FPC from the SVN repository on either i386-win32 or x86_64-win64, then attempt to build the latest version of Lazarus, using the ""FPC"" variable to refer to the compiler you just built.
-
-## Additional information:
-
-The errors occur on the following lines:
-
-Push(Options.ExecuteBefore.Command);
-
-Push(Options.ExecuteAfter.Command);
-
-The X position of the error puts the cursor at the start of ""ExecuteBefore"" and ""ExecuteAfter"" respectively.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 36507
-- **OS:** Microsoft Windows
-- **OS Build:** 10 Professional
-- **Build:** r43826
-- **Platform:** i386 and x86_64
-- **Version:** 3.3.1
-- **Fixed in revision:** 62477",100
-91550429,2019-12-02 14:30:14.000,Compiler fails to build,"
-Original Reporter info from Mantis: Thaddy
-
-- **Reporter name:** Thaddy de Koning
-
-
-## Description:
-
-The compiler fails to build for armhf/Raspbian on r43626
-
-Build fails in *first* cycle on pp.pas
-
-## Steps to reproduce:
-
-make clean all install.
-Hang is on:
-/usr/bin/ppcarm -Ur -Xs -O2 -n -Fuarm -Fusystems -Fu/home/asta/fpc331/rtl/units/arm-linux -Fiarm -FEarm/bin/arm-linux -FUarm/units/arm-linux -dRELEASE -CX -XXs -CpARMv7a -CfVFPv3 -OpARMv7a -dREVINC -darm -dGDB -dBROWSERLOG -Fuarmgen pp.pas
-
-## Additional information:
-
-Full build settings:
-sudo make clean install INSTALL_PREFIX=/usr/local PP=/usr/bin/ppcarm REVINC=force REVSTR=43626 OPT=""-CX -XXs -CpARMv7a -CfVFPv3 -OpARMv7a""
-
-bootstrap is 3.0.4 (native)
-
-## Mantis conversion info:
-
-- **Mantis ID:** 36391
-- **OS:** Raspbian
-- **OS Build:** Buster
-- **Build:** 43626
-- **Platform:** armhf
-- **Version:** 3.3.1
-- **Fixed in revision:** 43635 (#0cb85eef9bc2f4a0d1e89f148c1e2aa63207191f)",200
-91550189,2019-11-13 02:59:13.000,Internal Error 200130121 when compiling x86_64-win64 as of r43457,"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-As of revision r43457, the compiler raises Internal Error 200130121 when you try to ""make all"" under x86_64-win64.
-
-## Steps to reproduce:
-
-On a 64-bit Windows platform, run ""make distclean all install"" from the FPC source directory and observe the internal error trigger at the ppc1.exe stage.
-
-## Additional information:
-
-Possibly caused by incorrect code generation related to new peephole optimisations that Florian implemented last night.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 36307
-- **OS:** Microsoft Windows
-- **OS Build:** 10 Professional
-- **Build:** r43457
-- **Platform:** x86_64-win64
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 43460 (#6bed497c7c3cba3bde7cf91a4544c67e90b041a3)",300
-91550094,2019-11-12 02:19:02.000,[Patch] Bug fix for jump optimisations under debug mode,"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-When building packages with DEBUG=1, some of the files can sometimes raise internal error 2018062911 under x86_64-linux. This was due to the presence of a ""tai_tempalloc"" entry that the code wasn't expecting in OptPass2Jcc.
-
-Now, for both OptPass2Jcc and SkipLabelFast, if any entries are found that belong to the SkipInstr set (which includes tai_tempalloc), the stripping code will move to the next entry and leave it alone. The internal error is still raised though if it isn't a label or align and doesn't belong to the set (i.e. is an instruction or something else that affects program flow in some way).
-
-## Steps to reproduce:
-
-Apply patch, then run the following command from an x86_64 Linux terminal (specifying directories and prefixes if needs be):
-
-""make distclean all install DEBUG=1 NOGDB=1 NOGDBMI=1 GDBMI=1""
-
-Confirm that Internal Error 2018062911 is no longer raised when packages are compiled.
-
-## Additional information:
-
-Additionally, SkipLabelFast now has a check that will not remove alignment fields if debug info is present, so such behaviour is consistent throughout the compiler.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 36299
-- **OS:** Ubuntu
-- **OS Build:** 16.04
-- **Build:** r43453
-- **Platform:** x86_64-linux
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 43455 (#5c0a5b73c7cfade35d402e59bca06c8a6167a3f1)",100
-91550078,2019-11-10 04:59:22.000,Internal Error 200109092 when manually compiling Lazarus,"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-After updating FPC to the latest trunk, Manually compiling Lazarus using FPC under Win64 via the command prompt raises Internal Error 200109092, which indicates an invalid loc parameter in ""tcg.a_load_loc_reg"" in ""unit /compiler/cgobj.pas"". i.e:
-
-lazsyntextarea.pp(1106,27) Fatal: Internal error 200109092
-Fatal: Compilation aborted
-
-## Steps to reproduce:
-
-Build the x86_64-win64 build of FPC (""svn info"" identifies the current revision as 43434) using ""make clean all install"", then from your Lazarus source directory (tested with a fresh pull of its own trunk), run the following command from the Windows command prompt (Replace ""C:\pp"" with wherever FPC has been installed after it is built):
-
-C:\pp\bin\x86_64-win64\ppcx64 -Mobjfpc -FE -g- -Xs -FuC:\pp\units\x86_64-win64\fcl-db\src\sqldb -FuC:\pp\units\x86_64-win64\libtar\src -FuC:\pp\units\x86_64-win64\fpmkunit\src -Fupackager -FuC:\pp\units\x86_64-win64\fppkg\src -FlC:\pp\units\x86_64-win64\rtl -FuC:\pp\units\x86_64-win64\rtl -FiC:\pp\units\x86_64-win64\rtl\inc -FiC:\pp\units\x86_64-win64\rtl\win -FiC:\pp\units\x86_64-win64\rtl\win64 -FiC:\pp\units\x86_64-win64\rtl\x86_64 -FiC:\pp\units\x86_64-win64\rtl\win\wininc -FuC:\pp\units\x86_64-win64\rtl\win -FiC:\pp\units\x86_64-win64\rtl\objpas\sysutils -Fiide\include -FuC:\pp\units\x86_64-win64\rtl\inc -FuC:\pp\units\x86_64-win64\rtl\objpas -Fulcl\interfaces\win32 -Fucomponents\lazutils -FiC:\pp\units\x86_64-win64\rtl\objpas\classes -FuC:\pp\units\x86_64-win64\rtl-objpas\src\inc -FuC:\pp\units\x86_64-win64\fcl-base\src -Fulcl -FuC:\pp\units\x86_64-win64\fcl-image\src -Filcl\include -FuC:\pp\units\x86_64-win64\winunits-base\src -FuC:\pp\units\x86_64-win64\rtl-objpas\src\win -FiC:\pp\units\x86_64-win64\rtl-objpas\src\inc -FuC:\pp\units\x86_64-win64\paszlib\src -FuC:\pp\units\x86_64-win64\hash\src -FuC:\pp\units\x86_64-win64\pasjpeg\src -Fulcl\widgetset -Fucomponents\lazutils -FuC:\pp\units\x86_64-win64\fcl-process\src -FiC:\pp\units\x86_64-win64\fcl-process\src\win -FuC:\pp\units\x86_64-win64\chm\src -FuC:\pp\units\x86_64-win64\fcl-json\src -Fulcl\forms -Fucomponents\codetools -Fiide\include\win64 -Fucomponents\ideintf -Fucomponents\lazcontrols -Fucomponents\debuggerintf -Fudebugger -Fucomponents\synedit -FuC:\pp\units\x86_64-win64\fcl-registry\src -FuC:\pp\units\x86_64-win64\regexpr\src -Fupackager\registration -FuC:\pp\units\x86_64-win64\fcl-db\src\base -Fucomponents\ideintf -FuC:\pp\units\x86_64-win64\fcl-res\src -Fupackager -Fudesigner -Fuide\frames -FuC:\pp\units\x86_64-win64\fcl-xml\src -FuC:\pp\units\x86_64-win64\fcl-extra\src\win -FuC:\pp\units\x86_64-win64\winunits-jedi\src -FuC:\pp\units\x86_64-win64\fcl-db\src\dbase -FiC:\pp\units\x86_64-win64\fcl-process\src\winall -FiC:\pp\units\x86_64-win64\fcl-base\src\win -Fucomponents\lazdebuggergdbmi -Fudebugger\frames -Fuconverter -Fupackager\frames -O3 ide\lazarus.pp -B
-
-## Additional information:
-
-Using the ""make"" command on Lazarus does not raise the error.
-
-I'm willing to accept that I might have gotten something wrong with the directories or the configuration, but an Internal Error is in the same category as assertions and is a bug no matter how incorrect one's configuration is.
-
-Currently it is blocking my work on the jump optimisations (I updated my local FPC copy to the most recent trunk revision in order to test my patches).
-
-## Mantis conversion info:
-
-- **Mantis ID:** 36287
-- **OS:** Microsoft Windows
-- **OS Build:** 10 Professional
-- **Build:** r43434
-- **Platform:** x86_64-win64
-- **Version:** 3.3.1",100
-91549099,2019-07-29 09:45:16.000,[Patch] Out-of-date copyright message,"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-For a while now, the copyright message upon running fpc reads ""Copyright (c) 1993-2018 by Florian Klaempfl and others"" - the year should now be 1993-2019, given that many updates have been made to the compiler in the first eight months of 2019.
-
-## Steps to reproduce:
-
-Apply patch and confirm everything builds and the year is updated when the compiler is run.
-
-## Additional information:
-
-I might recommend changing this field to use a macro in place of the year, much how the previous line of the copyright message uses the ""$FPCDATE"" macro to display the full date of the build. Introducing a new macro that just contains the year field does not seem like a difficult extension, and it means that the copyright message does not need to be updated in future.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 35903
-- **OS:** Microsoft Windows
-- **OS Build:** 10 Professional
-- **Build:** r42527
-- **Platform:** Cross-platform
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 42558 (#7809930b08765742aa3bb1ee307850e5a86cb0ff),44008 (#eed0e52a64ee8c8d5911cdc2ee3bcb63c72f56b3)
-- **Target version:** 3.2.0",100
-91548828,2019-07-10 15:11:06.000,"Any use whatsoever of ""label"" and ""goto"" in a procedure marked as inline crashes the compiler.","
-Original Reporter info from Mantis: Akira1364
-
-- **Reporter name:**
-
-
-## Description:
-
-I'm aware that inline would not be supported (AFAIK) for methods containing gotos in the first place, however, that's a different thing than hard-crashing the compiler (with no real error message).
-
-## Steps to reproduce:
-
-Attempt to compile the following example program:
-
-``` pascal
-program BugExample;
-
-{$mode ObjFPC}
-{$GOTO ON}
-
-type SubRange = 1..3;
-
- procedure Blah(const I: SubRange); inline;
- var
- B: Boolean = True;
- label
- Top;
- begin
- Top:
- case I of
- 1:
- WriteLn(2);
- 2:
- if B then
- begin
- B := False;
- WriteLn('Resetting!');
- goto Top;
- end
- else
- WriteLn(4);
- 3:
- WriteLn(6);
- end;
- end;
-
- procedure DoIt;
- begin
- Blah(1);
- Blah(2);
- Blah(3);
- end;
-
-begin
- DoIt;
-end.
-```
-
-Note that if ""inline"" is removed, it compiles without issues and runs as expected.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 35820
-- **OS:** Windows
-- **OS Build:** 10
-- **Build:** Trunk
-- **Platform:** x86_64
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 43793 (#fd0012deff5ef06a302cbd81762c3bb4085d36f7)
-- **Monitored by:** » Akira1364 (Akira1364), » @MageSlayer (Denis Golovan)",100
-91547188,2019-03-15 11:40:24.000,SIGSEV crash due to corrupt call stack generated by the compiler in delphi mode,"
-Original Reporter info from Mantis: gerrit
-
-- **Reporter name:** Gerrit Moeller
-
-
-## Description:
-
-Calling an overridden method with stdcall calling convention through an interface crashes (SIGSEV) if stdcall is not repeated in overriding method!
-
-More Information -> See comments in submitted source code.
-
-## Steps to reproduce:
-
-Compile and run program source code submitted with this issue.
-
-## Additional information:
-
-//
-// Submitted by:
-//
-// Gerrit Moeller
-// gerrit.moeller@gm-software.de
-// www.gm-software.de
-//
-
-{$MODE DELPHI} // <- Without delphi mode the parser correctly issues an error if stdcall is not repeated
-``` // in overriding method (see below).```
-
-``` pascal
-program FPCIntfStdcallOverrideCrash;
-
-type
-
- ISomeMethod = interface(IUnknown)
- ['{DBFB482B-76FB-4DB7-A321-1001755B1F9E}']
- function SomeMethod(const AIntArg: Integer; const AStrArg: WideString): IUnknown; stdcall;
- end;
-```
-
-
-```
- TBaseClassImpl = class(TInterfacedObject, ISomeMethod)
- public
- function SomeMethod(const AIntArg: Integer; const AStrArg: WideString): IUnknown; virtual; stdcall;
- end;
-```
-
-
-```
- TDerivedClassImpl = class(TBaseClassImpl)
- public
- //
- // In delphi mode it is not neccessary to repeat stdcall calling convention in the overriding method.
- // But the compiler then generates a call stack with another calling convention for the overriding method!
- // If you call the overriding method through an interface this crashes (SIGSEV) since it is supposed to be stdcall!
- // Repeating the calling convention in the overriding method fixes the crash.
- //
- function SomeMethod(const AIntArg: Integer; const AStrArg: WideString): IUnknown; override; // stdcall; // <- uncommenting stdcall fixes the crash
- end;
-```
-
-
-``` pascal
-function TBaseClassImpl.SomeMethod(const AIntArg: Integer; const AStrArg: WideString): IUnknown; stdcall;
-begin
- // Arguments corrupt here due to call stack mismatch!
- Result := nil; // <- SIGSEV crash here due to call stack mismatch!
-end;
-
-function TDerivedClassImpl.SomeMethod(const AIntArg: Integer; const AStrArg: WideString): IUnknown;
-begin
- // Arguments corrupt here due to call stack mismatch!
- Result := inherited SomeMethod(AIntArg, AStrArg);
-end;
-```
-
-
-``` pascal
-procedure Main;
-var methodIntf: ISomeMethod; unk: IUnknown;
-begin
- methodIntf := TDerivedClassImpl.Create;
- unk := methodIntf.SomeMethod(100, 'Some string contents');
-end;
-```
-
-
-``` pascal
-begin
- Main;
-end.
-```
-
-
-## Mantis conversion info:
-
-- **Mantis ID:** 35233
-- **OS:** All (i guess)
-- **OS Build:** All (i guess)
-- **Build:** All
-- **Platform:** All (i guess)
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 41716 (#ed2ae508d090338a706418fdf740bc219b614776)",100
-91547077,2019-03-05 00:26:56.000,"FPC generates a word access when it should generate a byte access, occasionally causing an access violation","
-Original Reporter info from Mantis: 440bx @440bx
-
-- **Reporter name:**
-
-
-## Description:
-
-For some expressions the compiler generates code that accesses a word instead of accessing a byte. When this occurs on the last accessible byte of a memory block, this causes an access violation. In the following code snippet:
-
-
-``` pascal
-procedure DumpHex(BaseAddress : pointer; BlockSize : DWORD);
-const
- HexDigits : packed array[0..$F] of char = '0123456789ABCDEF';
-
-var
- Buf : packed array[0..127] of char;
-
- HexPtr : ^char;
-
- p : pbyte;
-
- i : dword;
-begin
- ZeroMemory(@Buf, sizeof(Buf));
-
- HexPtr := @Buf;
-
- if BlockSize > high(Buf) then BlockSize := high(Buf); // only dump 1 buffer's
- // worth
- i := 0;
- while I < BlockSize do
- begin
- pchar(p) := pchar(BaseAddress) + I;
-
- HexPtr^ := HexDigits[p^ shr 4]; // first nibble
- inc(HexPtr);
-
- // this instruction causes an access violation on the last byte because
- // it tries to access a word instead of a byte.
-
- HexPtr^ := HexDigits[p^ and $F]; // second nibble
- inc(HexPtr);
-
- writeln('I : ', i,
- ' address : ', IntToHex(ptruint(p), 0), ' dump : ', Buf);
-
- inc(I);
- end;
-
- writeln(Buf); // won't get here
-end;
-```
-
-the expression:
-
-``` HexPtr^ := HexDigits[p^ and $F]; // second nibble```
-
-generates a word access instead of a byte access.
-
-The attached program reliably reproduces the problem.
-
-## Steps to reproduce:
-
-attempt to access the last accessible byte of a memory block.
-
-Compile and run the attached program. Look at the code generated for the expression:
-
-``` HexPtr^ := HexDigits[p^ and $F]; // second nibble```
-
-to see the cause of the access violation.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 35187
-- **OS:** Windows and possibly others
-- **OS Build:** all
-- **Platform:** 32 and 64 bit AMD64
-- **Version:** 3.0.4
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 41667 (#d65737393352eabc8aff52f9c7b6545d09c578c8)
-- **Monitored by:** » @engkin (engkin), » Cyrax (Cyrax)",100
-91546616,2019-02-12 05:43:36.000,[Patch] Internal Error 200208181 fix,"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-There's a critical bug in the ""tai_cpu_abstract.ppuload"" constructor. When loading in the operand count, it doesn't actually set ops, the variable that keeps track of this, which remains at zero. As a result, the loader skips loading in the instruction's operands and moves onto the next instruction, where instead of data for the next tai object in the PPU file, there's operand data instead, and because of this, Internal Error 200208181 is raised because of a signature mismatch.
-
-## Steps to reproduce:
-
-Apply patch and confirm successful compilation of the compiler.
-
-## Additional information:
-
-Normally this bug is impossible to trigger because it seems that nodes of type asmn are not usually saved to the PPU file. I have, however, triggered it on my own work with the compiler, and even if the code is rarely triggered, it is still a bug with a known way of triggering it (have a construct where a node of type ""asmn"" is saved to a PPU file, then try to load the PPU file on a subsequent compilation of your project).
-
-## Mantis conversion info:
-
-- **Mantis ID:** 35065
-- **OS:** Microsoft Windows
-- **OS Build:** 10 Professional
-- **Build:** Cross-platform
-- **Platform:** x86_64-win64
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 41310 (#d4e059bd41b62841560790c0051c9c437243cad5)
-- **Target version:** 3.3.1",200
-91546005,2018-12-28 13:21:12.000,"Win64 (seh) compiled exe crashes, because implicit finally handler is entered twice.","
-Original Reporter info from Mantis: Martin @martin_frb
-
-- **Reporter name:** Martin Friebe
-
-
-## Description:
-
-This happens on Win64 only (seh specific) / *not* tested with the 32 bit seh...
-
-
-See code in ""steps to reproduce""
-
-compiled with -gh (tested with -gh -gt -gw) crashes.
-
-The procedure allocates memory for a local copy of ""a: array of integer""
-
-When ""exit"" is executed, _FPC_local_unwind is called. This calls the finally handlers (both the user one, and the implicit one).
-
-The following code is generated (-al)
-
-```
->>>>>>>>>>>>>>>>>
-.seh_handler __FPC_specific_handler,@unwind
-.seh_handlerdata
- .long 2
- .long 0
- .rva .Lj14
- .rva .Lj15
- .rva P$PROJECT1$_$FOO$array_of_LONGINT_$$_fin$0
- .long 0
- .rva .Lj9
- .rva .Lj10
- .rva P$PROJECT1$_$FOO$array_of_LONGINT_$$_fin$1
-<<<<<<<<<<<<<<<<
-```
-
-Lj10 is BEFORE the call to the implicit finally
-
-.Lj10:
-```
-.Lj11:
- movq %rbp,%rcx
- call P$PROJECT1$_$FOO$array_of_LONGINT_$$_fin$1
-```
-
-So after unwind finishes, the implicit finally handler is called a 2nd time (setting a breakpoint in asm proves this).
-
-The memory for ""a"" is attempted to be freed a 2nd time, which crashes the app.
-
-## Steps to reproduce:
-
-``` pascal
-program project1;
-{$mode objfpc}
-uses
- Classes;
-
-procedure Foo(a: array of integer);
-begin
- try
- writeln(a[0]);
- if a[0] = 1 then exit;
- writeln(a[0]);
- finally
- writeln(a[0]);
- end;
-end;
-
-begin
- foo([1]);
-end.
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 34772
-- **OS:** win 10
-- **OS Build:** 10
-- **Build:** 40680
-- **Platform:** 64bit Intel
-- **Version:** 3.3.1
-- **Fixed in revision:** 42673 (#416c974d3ffc25f6e5d87b190c5a6ba155a2f503)
-- **Monitored by:** » xmen (xmen), » reiner.sombrowsky (Reiner Sombrowsky), » Snus (Snus), » @xhajt03 (Tomas Hajny), » Cyrax (Cyrax), » @MageSlayer (Denis Golovan), » @CuriousKit (J. Gareth Moreton)",100
-91545627,2018-12-05 16:51:13.000,Compiler misoptimizes the logical expression,"
-Original Reporter info from Mantis: frol
-
-- **Reporter name:**
-
-
-## Description:
-
-The following code outputs ""YES YES"" when compiled with `-O0`, `-O1`, `-O3`, `-O4`, but outputs ""NO YES"" with `-O2`.
-
-Notes:
-
-\* the `if` expressions are completely the same, so there is no reason for the output to be different!
-\* the first `WriteLn;` is essential to reproduce the bug, but it can be replaced with some other computations.
-\* the issue is reproducible on latest Debian, Ubuntu, CentOS, AlpineLinux x86_64 with FPC installed from the official repositories and the prebuilt-binaries from FreePascal.org
-\* the issue is NOT reproducible on Arch Linux
-\* the issue affects FPC 3.0.0+ and is not reproducible on FPC 2.6.4
-
-## Steps to reproduce:
-
-1. Compile the following code with `fpc -O2 qq.pas` and run the program:
-
-``` pascal
-var d: LongInt;
-begin
- WriteLn;
-
- d := 828;
- if ((d mod 2) = 0) xor ((d < 0) and ((d mod 3) = 0)) then
- WriteLn('YES')
- else
- WriteLn('NO');
-
- if ((d mod 2) = 0) xor ((d < 0) and ((d mod 3) = 0)) then
- WriteLn('YES')
- else
- WriteLn('NO');
-end.
-```
-
-2. The expected output is ""YES YES"", but the output is ""NO YES""
-
-## Mantis conversion info:
-
-- **Mantis ID:** 34653
-- **OS:** Debian
-- **OS Build:** 9.6
-- **Platform:** Linux x86_64
-- **Version:** 3.0.4
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 40934 (#e24449bcfd24e482e286b294830bcc76044c4a82)
-- **Monitored by:** » frol (frol), » Vincent (Vincent Snijders)
-- **Target version:** 3.3.1",100
-91545233,2018-11-08 19:13:30.000,i386-win32 fails to build as of revision 40275 (and possibly earlier),"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-As of SVN revision 40275, the compiler doesn't seem to build under i386-win32. Upon running the make script, the following errors appear:
-
-...
-make[6]: Entering directory `C:/Users/NLO-012/Documents/Programming/fpc/rtl'
-make -C win32 all
-make[7]: Entering directory `C:/Users/NLO-012/Documents/Programming/fpc/rtl/win32'
-C:/Users/NLO-012/Documents/Programming/fpc/compiler/ppc2.exe -Ur -Xs -O2 -n -Fi../inc -Fi../i386 -Fi../win -FE. -FUC:/Users/NLO-012/Documents/Programming/fpc/rtl/units/i386-win32 -di386 -dRELEASE -Us -Sg system.pp -Fi../win
-systemh.inc(23,2) Error: Wrong switch toggle, use ON/OFF or +/-
-systemh.inc(31,2) Error: Wrong switch toggle, use ON/OFF or +/-
-sysosh.inc(34,15) Fatal: Syntax error, ""identifier"" expected but "":"" found
-Fatal: Compilation aborted
-make[7]: *** [system.ppu] Error 1
-...
-
-Line 23 of systemh.inc is ""{$modeswitch advancedrecords}"" while line 31 is ""{$inline on}"". Line 34 of sysosh.inc is part of a record declaration and is the line ""DebugInfo : pointer;""
-
-## Steps to reproduce:
-
-Attempt to do a full ""make clean all"" with the relevant configuration and observe the error when it attempts to recompile the system unit under ppc2.
-
-## Additional information:
-
-This is my personal script (a BAT file)
-
-@echo off
-set mybinutils=C:\Users\NLO-012\Documents\Programming\fpc\binw32\
-set builder=C:\lazarus\fpc\3.0.4\bin\i386-win32
-set PATH=%mybinutils%;%builder%;%PATH%
-
-cd /d C:\Users\NLO-012\Documents\Programming\fpc
-@echo Clearing compiled FPC binaries...
-del /s *.o > NUL
-del /s *.a > NUL
-del /s *.ppu > NUL
-make distclean all install DATA2INC=C:\Users\NLO-012\Documents\Programming\fpc\utils\bin\i386-win32\data2inc.exe OS_TARGET=win32 CPU_TARGET=i386
-cd /d C:\PP\bin\i386-win32
-fpcmkcfg -d basepath=C:\PP\ -o C:\PP\bin\i386-win32\fpc.cfg
-cd /d C:\Users\NLO-012\Documents\Programming
-
-## Mantis conversion info:
-
-- **Mantis ID:** 34529
-- **OS:** Microsoft Windows
-- **OS Build:** 10 Professional
-- **Build:** i386-win32 (40275)
-- **Platform:** i386
-- **Version:** 3.3.1
-- **Target version:** 3.3.1",200
-91544933,2018-10-25 23:58:14.000,[Block] PasToJS does not compile on x86_64-win64 as of r40045,"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-As of SVN revision 40045, the packages PasToJS fails to compile when running ""make all"", thus blocking a fully-successful compilation of Free Pascal on this platform.
-
-Error log indicates not being able to locate the subroutine ""ExpandFileNameUtf8"" in ""packages/pastojs/src/pas2jsfileutilswin.inc"". File last modified by user ""mattias"" according to ""svn log"".
-
-## Steps to reproduce:
-
-Attempt to do a ""make all"" under x86_64-win64 from a fresh set of files from the SVN repository revision 40045.
-
-## Additional information:
-
-Output log (with my particular directory tree):
-
-...
-[ 95%] Compiled package odata
-Start compiling package pastojs for target x86_64-win64.
-```
- Compiling pastojs\src\pas2jsfiler.pp
- Compiling pastojs\src\pas2jsfileutils.pp
-```
-The installer encountered the following error:
-External command ""C:/Users/NLO-012/Documents/Programming/fpc/compiler/ppcx64.exe -Twin64 -FUpastojs\units\x86_64-win64\ -FuC:\Users\NLO-012\Documents\Programming\fpc\rtl\units\x86_64-win64\ -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\paszlib\units\x86_64-win64\ -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\hash\units\x86_64-win64\ -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\rtl-objpas\units\x86_64-win64\ -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-js\units\x86_64-win64\ -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-base\units\x86_64-win64\ -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-res\units\x86_64-win64\ -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-json\units\x86_64-win64\ -FuC:\Users\NLO-012\Documents\Programming\fpc\packages\fcl-passrc\units\x86_64-win64\ -Fipastojs\src -Ur -Xs -O2 -n -dx86_64 -dRELEASE -Sc -S2h -viq pastojs\src\pas2jsfiler.pp"" failed with exit code 1. Console output:
-Target OS: Win64 for x64
-Compiling pastojs\src\pas2jsfiler.pp
-Compiling pastojs\src\pas2jsfileutils.pp
-pas2jsfileutilswin.inc(375,13) Error: Identifier not found ""ExpandFileNameUtf8""
-pas2jsfileutils.pp(845) Fatal: There were 1 errors compiling module, stopping
-Fatal: Compilation aborted
-
-make[2]: *** [all] Error 1
-make[2]: Leaving directory `C:/Users/NLO-012/Documents/Programming/fpc/packages'
-make[1]: *** [packages_all] Error 2
-make[1]: Leaving directory `C:/Users/NLO-012/Documents/Programming/fpc'
-make: *** [build-stamp.x86_64-win64] Error 2
-
-## Mantis conversion info:
-
-- **Mantis ID:** 34458
-- **OS:** Microsoft Windows
-- **OS Build:** 10 Professional
-- **Build:** 40045
-- **Platform:** x86_64
-- **Version:** 3.3.1
-- **Fixed in revision:** 40046 (#70a21c91c1742d995278a52cec24472283200c12)
-- **Target version:** 3.3.1",200
-91544928,2018-10-25 04:05:40.000,r40027 breaks build,"
-Original Reporter info from Mantis: PascalR @PascalRiekenberg
-
-- **Reporter name:** Pascal Riekenberg
-
-
-## Description:
-
-at least for x86_64-win32
-
-## Mantis conversion info:
-
-- **Mantis ID:** 34456
-- **OS:** Windows 10 x64
-- **OS Build:** 1803
-- **Build:** r40027
-- **Platform:** i386
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** commit 40028 (#d26fb3b663061b521fcdb48d84b2811a2f1dc996)
-- **Target version:** 3.3.1",300
-91544903,2018-10-19 15:44:48.000,Internal error,"
-Original Reporter info from Mantis: Thaddy
-
-- **Reporter name:** Thaddy de Koning
-
-
-## Description:
-
- *Lazarus* throws a compiler internal error some time after *fpc* 3.3.1. from at most one day ago.
-
-Output:(3104) Compiling ./gtk2/gtk2proc.pp
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(475,24) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(520,3) Note: (6058) Call to subroutine ""function GetDebugLogger:TLazLogger;"" marked as inline is not inlined
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(677,39) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(708,24) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(713,47) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(730,18) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(761,32) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(763,34) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.pp(366,40) Hint: (5024) Parameter ""AForm"" not used
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.pp(368,37) Hint: (5024) Parameter ""AForm"" not used
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(839,16) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(870,23) Hint: (5060) Function result variable does not seem to be initialized
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(880,40) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(896,18) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(901,29) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(926,18) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(931,29) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(963,7) Note: (6058) Call to subroutine ""function GetDebugLogger:TLazLogger;"" marked as inline is not inlined
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1054,5) Note: (6058) Call to subroutine ""function GetDebugLogger:TLazLogger;"" marked as inline is not inlined
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.pp(629,34) Hint: (5024) Parameter ""AScaleGC"" not used
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1127,5) Note: (6058) Call to subroutine ""function GetDebugLogger:TLazLogger;"" marked as inline is not inlined
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1224,28) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1238,22) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1333,5) Note: (6058) Call to subroutine ""function GetDebugLogger:TLazLogger;"" marked as inline is not inlined
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1378,32) Hint: (5057) Local variable ""SourceRect"" does not seem to be initialized
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1381,3) Note: (6058) Call to subroutine ""function GetDebugLogger:TLazLogger;"" marked as inline is not inlined
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1409,17) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.pp(389,30) Hint: (5024) Parameter ""DC"" not used
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1603,5) Note: (6058) Call to subroutine ""function GetDebugLogger:TLazLogger;"" marked as inline is not inlined
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1774,16) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1779,16) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1787,54) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1797,52) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1806,46) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(1811,44) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(2091,42) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(2309,52) Hint: (5057) Local variable ""EventString"" does not seem to be initialized
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(2817,34) Hint: (4079) Converting the operands to ""Int64"" before doing the add could prevent overflow errors.
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(2863,39) Hint: (4079) Converting the operands to ""Int64"" before doing the add could prevent overflow errors.
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(2914,58) Hint: (4079) Converting the operands to ""Int64"" before doing the add could prevent overflow errors.
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(3360,39) Hint: (5057) Local variable ""ModMap"" does not seem to be initialized
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(3388,22) Warning: (5089) Local variable ""KeySyms"" of a managed type does not seem to be initialized
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(3474,32) Hint: (5057) Local variable ""KeySymChars"" does not seem to be initialized
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(3592,46) Hint: (4035) Mixing signed expressions and longwords gives a 64bit result
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(3617,19) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(3641,19) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(3824,18) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(3975,5) Note: (6058) Call to subroutine ""function GetDebugLogger:TLazLogger;"" marked as inline is not inlined
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(3989,5) Note: (6058) Call to subroutine ""function GetDebugLogger:TLazLogger;"" marked as inline is not inlined
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(4013,18) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(4157,27) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(4240,17) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(4242,27) Hint: (5057) Local variable ""Mess"" does not seem to be initialized
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(4281,26) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(4475,24) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(4476,20) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(4515,24) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(4516,20) Hint: (4055) Conversion between ordinals and pointers is not portable
-/home/pi/lazarus/lcl/interfaces/./gtk2/gtk2proc.inc(4705,15) Fatal: Internal error 200108231
-Fatal: (1018) Compilation aborted
-Error: /usr/local/bin/ppcarm returned an error exitcode
-Error: (lazarus) Compile package LCL 2.1: stopped with exit code 256
-Error: (lazarus) [TLazPackageGraph.CompileRequiredPackages] ""Exit code 256""
-Error: (lazarus) Building IDE: Compile AutoInstall Packages failed.
-Makefile:3279: recipe for target 'useride' failed
-make: *** [useride] Error 2
-
-## Steps to reproduce:
-
-build lazarus trunk 59323: make clean useride with fpc 3.3.1-r39986
-
-## Additional information:
-
-I did a built last evening that was ok.
-The error is with these revisions here:
-
-./ncgbas.pas:534: internalerror(200108231);
-
-## Mantis conversion info:
-
-- **Mantis ID:** 34438
-- **OS:** Raspbian
-- **OS Build:** Jessie
-- **Build:** 39986
-- **Platform:** Armhf
-- **Version:** 3.3.1
-- **Fixed in version:** 3.3.1
-- **Fixed in revision:** 40202 (#34d11046e026bc434c0376fd05db85883bea9531)
-- **Monitored by:** » Cyrax (Cyrax)
-- **Target version:** 3.3.1",200
-91543655,2018-06-29 08:23:29.000,Possible internal corruption with i386-win32 -> x86_64-win64 cross compiler,"
-Original Reporter info from Mantis: CuriousKit @CuriousKit
-
-- **Reporter name:** J. Gareth Moreton
-
-
-## Description:
-
-There seems to be some internal corruption at play during cross compilation that causes a cascade SIGSEGV. I have found a reproducible case with one of Lazarus' source files.
-
-## Steps to reproduce:
-
-Compile FPC under i386-win32 and then the cross compiler for x86_64-win64. This is my personal script (change directories as appropriate):
-
-set mybinutils=C:\Users\NLO-012\Documents\Programming\fpc\binw32\
-set builder=C:\lazarus\fpc\3.0.4\bin\i386-win32
-set PATH=%mybinutils%;%builder%;%PATH%
-
-cd /d C:\Users\NLO-012\Documents\Programming\fpc
-make distclean all install DATA2INC=C:\Users\NLO-012\Documents\Programming\fpc\utils\bin\i386-win32\data2inc.exe OS_TARGET=win32 CPU_TARGET=i386
-make crossinstall OS_TARGET=win64 CPU_TARGET=x86_64
-cd /d C:\PP\bin\i386-win32
-fpcmkcfg -d basepath=C:\PP\ -o C:\PP\bin\i386-win32\fpc.cfg
-cd /d C:\Users\NLO-012\Documents\Programming
-
-Using a 32-bit version of Lazarus linked to the 32-bit compiler that you've built, open fpc/compiler/pp.lpi and reconfigure it to compile for x86_64-win64 by changing the custom options to -dx86_64 and then change any paths that reference i386 to x86_64.
-
-Now, in the Run Parameters settings, set the command line parameters to ""components\lazutils\ttdebug.pas -g -gl -O3 -Xs -CX -XX -ddisableUTF8RTL -Mobjfpc"" (ttdebug.pas has mode Delphi, but other units that it relies on will fail to compile unless -MObjfpc is specified) and the working directory to your lazarus source directory (mine is ""C:\Users\NLO-012\Documents\Programming\lazarus"")
-
-Run the compiler in the debugger and observe a SIGSEGV as it tries to compile ttdebug (you might have to run it more than once, especially if you do a full build the first time - it doesn't always occur if you use -B, or -O2 instead of -O3)
-
-Now, add ""-a"" to the command line parameters. This time there's an assembler error akin to ""components\lazutils\ttdebug.s:974: Error: alignment not a power of 2"". If you analyse ttdebug.s that's produced, you'll find the following on line 914: "".balign 119,0x90"". There's nothing that should generate a value of 119 for this alignment field. A possible clue is that it's nestled among a couple of CMOV commands and unused labels.
-
-## Additional information:
-
-I stumbled across this while attempting to fix issue #33909. Personally I cannot see how my changes would cause such a corruption, and I confess I need some help in getting to the bottom of this.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 33926
-- **OS:** Microsoft Windows
-- **OS Build:** 10 Enterprise
-- **Build:** x86_64-win64-win32/win64
-- **Platform:** win64
-- **Version:** 3.1.1
-- **Target version:** 3.1.1",200
-91543590,2018-06-26 00:41:16.000,New Jcc optimization makes error,"
-Original Reporter info from Mantis: parcel
-
-- **Reporter name:** Do-wan Kim
-
-
-## Description:
-
-New Jcc optimization makes error on cross compiling x86-64.
-
-Revert to 39306, it works ok.
-
-## Additional information:
-
-Free Pascal Compiler version 3.1.1-r39307 [2018/06/26] for x86_64
-Copyright (c) 1993-2018 by Florian Klaempfl and others
-(1002) Target OS: Win64 for x64
-(3104) Compiling lazutils.pas
-(3104) Compiling ttdebug.pas
-C:\development\lazarus\components\lazutils\ttdebug.pas(653,8) Error: (1026) Compilation raised exception internally
-C:\development\lazarus\components\lazutils\ttdebug.pas(653,8) Fatal: (1018) Compilation aborted
-An unhandled exception occurred at $08D8C011:
-EAccessViolation: Access violation
-``` $08D8C011```
-
-Error: C:\development\fpc\bin\i386-win32\ppcrossx64.exe returned an error exitcode
-Error: (lazarus) Compile package LazUtils 1.0: stopped with exit code 1
-Error: (lazbuild) LazUtils 1.0 compilation failed
-
-## Mantis conversion info:
-
-- **Mantis ID:** 33909
-- **OS:** Windows
-- **OS Build:** 10
-- **Build:** 39307
-- **Platform:** x86
-- **Version:** 3.1.1
-- **Fixed in version:** 3.1.1
-- **Fixed in revision:** 39353 (#5782acc32d81d67a4e37361fa862c28bf910d84c)
-- **Target version:** 3.1.1",200
-91542468,2018-03-09 19:28:56.000,fpreport: Master/detail error leading to crash,"
-Original Reporter info from Mantis: Stephano
-
-- **Reporter name:**
-
-
-## Description:
-
-This test was done using the standalone designer, the data setup of which doesn't understand the master/detail concept among defined data. It would be like if all records in the detail are linked to each and every record of the master, which is fine for this test.
-
-The preview however encounters an error: Unknown identifier: Employees.SALARY.
-
-If the aggregate variable SumDeptSalary is deleted, and the corresponding memo is removed from the group footer detail band, then the report renders, but the detail group header and footer don't show up (pdf attached).
-
-A 3rd preview produces a SIGSEGV.
-
-The report file is attached.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 33405
-- **Version:** 3.1.1
-- **Fixed in version:** 3.1.1
-- **Fixed in revision:** 38560 (#6c3ac68f1a3a3c890a11edc3454bf00828827502)
-- **Target version:** 3.2.0",100
-91542466,2018-03-09 17:33:12.000,FPReport: Report file crash on 2nd preview,"
-Original Reporter info from Mantis: Stephano
-
-- **Reporter name:**
-
-
-## Description:
-
-\- Load the attached report
-\- Preview it twice
-\-> SIGSEGV
-
-## Mantis conversion info:
-
-- **Mantis ID:** 33403
-- **Fixed in version:** 3.1.1
-- **Fixed in revision:** 38560 (#6c3ac68f1a3a3c890a11edc3454bf00828827502).
-- **Target version:** 3.2.0",100
-91542456,2018-03-09 06:11:48.000,FPReport designer: Aggregate variables lose their reset trigger on preview,"
-Original Reporter info from Mantis: Stephano
-
-- **Reporter name:**
-
-
-## Description:
-
-\- Load the attached report
-\- Inspect the already defined aggregate variable SalaryDeptSum
-Its group reset trigger is Data1.DEPT_NO
-\- Preview the report
-The department salary sums are not being reset!
-\- Inspect SalaryDeptSum
-It has lost its group trigger setting
-
-## Mantis conversion info:
-
-- **Mantis ID:** 33390
-- **Version:** 1.9 (SVN)
-- **Fixed in version:** 3.1.1
-- **Fixed in revision:** 38467 (#fbd974b0d8086f24cfc78befae1d43a95872d7b7)
-- **Target version:** 3.2.0",100
-91542416,2018-03-08 09:15:05.000,FPReport designer: Designer crash,"
-Original Reporter info from Mantis: Stephano
-
-- **Reporter name:**
-
-
-## Description:
-
-The standalone designer (rev 57462) crashes upon placing a memo with
-EReportFontNotFound (Helvetica)
-\- Create a new report
-\- Add a band
-\- Add a memo
-\-> error + crash
-
-## Mantis conversion info:
-
-- **Mantis ID:** 33374
-- **OS:** Ubuntu
-- **OS Build:** 16.04
-- **Platform:** x86_64
-- **Version:** 3.1.1
-- **Fixed in version:** 3.1.1
-- **Fixed in revision:** 38451 (#44ec9dd4bc1ae2cb509adf51d08a13af89e27cd9)
-- **Target version:** 3.2.0",200
-91532682,2013-12-13 14:39:19.000,[Patch] Fix for packages/fcl-db/tests/dbtestframework.pas compile errors,"
-Original Reporter info from Mantis: BigChimp
-
-- **Reporter name:** Reinier Olislagers
-
-
-## Description:
-
-Compiling testfieldtypes.pas
-testfieldtypes.pas(1276,39) Error: Illegal qualifier
-testfieldtypes.pas(1278,39) Error: Illegal qualifier
-testfieldtypes.pas(1283,39) Error: Illegal qualifier
-testfieldtypes.pas(1285,39) Error: Illegal qualifier
-testfieldtypes.pas(1287,39) Error: Illegal qualifier
-testfieldtypes.pas(2158,14) Warning: Class types ""TSQLQuery"" and ""HackedDataset"" are not related
-testfieldtypes.pas(2164,14) Warning: Class types ""TSQLQuery"" and ""HackedDataset"" are not related
-testfieldtypes.pas(2170,14) Warning: Class types ""TSQLQuery"" and ""HackedDataset"" are not related
-testfieldtypes.pas(2327) Fatal: There were 5 errors compiling module, stopping
-Fatal: Compilation aborted
-Error: /home/pascaldev/264/bin/x86_64-linux/ppcx64 returned an error exitcode (normal if you did not
-
-Laco:it is because there is used array constructor, which was introduced in FPC>=2.7.1
- solution is remove whole test TTestFieldTypes.TestOpenSpecialStatements from testfieldtypes.pas
-
-Attached patch against 2.6.4RC1 fixes this and dbtestframework.pas compiles
-
-## Mantis conversion info:
-
-- **Mantis ID:** 25420
-- **OS:** Windows
-- **OS Build:** Windows 7
-- **Platform:** x64 (with x86 compiler)
-- **Version:** 2.6.4
-- **Fixed in version:** 2.6.4
-- **Fixed in revision:** r26229 (#c68723e364374bd581ad3417fc47fcad1982a5a5)",100
-91531598,2013-05-28 08:14:10.000,Building compiler was failed for target [x86_64 - Win64],"
-Original Reporter info from Mantis: takeda99
-
-- **Reporter name:** Takeda Matsuki
-
-
-## Description:
-
-Here chunck of Error log :
-
-\---------------------------------------
-......
-
-[ 99%] Skipped package zorba which has been disabled for target x86_64-win64
-make[2]: Leaving directory `d:/freepascal271/packages'
-make[1]: Leaving directory `d:/freepascal271'
-echo Build > build-stamp.x86_64-win64
-echo Build > base.build-stamp.x86_64-win64
-make install CROSSINSTALL=1
-make[1]: Entering directory `d:/freepascal271'
-make installbase FPC=d:/freepascal271/compiler/ppcrossx64.exe ZIPDESTDIR=d:/free
-pascal271 FPCMAKE=d:/freepascal271/utils/fpcm/bin/i386-win32/fpcmake.exe
-make[2]: Entering directory `d:/freepascal271'
-d:/freepascal271/binutils/i386-win32/ginstall.exe -m 755 -d d:\freepascal271\fpc
-\\2.7.1
-d:/freepascal271/binutils/i386-win32/ginstall.exe -m 755 -d d:\freepascal271\fpc
-\\2.7.1/bin/i386-win32
-make compiler_install FPC=d:/freepascal271/compiler/ppcrossx64.exe ZIPDESTDIR=d:
-/freepascal271 FPCMAKE=d:/freepascal271/utils/fpcm/bin/i386-win32/fpcmake.exe
-make[3]: Entering directory `d:/freepascal271'
-make -C compiler install
-make[4]: Entering directory `d:/freepascal271/compiler'
-make -C utils install
-make[5]: Entering directory `d:/freepascal271/compiler/utils'
-make[5]: Leaving directory `d:/freepascal271/compiler/utils'
-d:/freepascal271/binutils/i386-win32/ginstall.exe -m 755 -d d:\freepascal271\fpc
-\\2.7.1/bin/i386-win32
-d:/freepascal271/binutils/i386-win32/cp.exe -fp ppcrossx64.exe d:\freepascal271\
-fpc\2.7.1/bin/i386-win32/ppcrossx64.exe
-make[4]: Leaving directory `d:/freepascal271/compiler'
-make[3]: Leaving directory `d:/freepascal271'
-make rtl_install FPC=d:/freepascal271/compiler/ppcrossx64.exe ZIPDESTDIR=d:/free
-pascal271 FPCMAKE=d:/freepascal271/utils/fpcm/bin/i386-win32/fpcmake.exe
-make[3]: Entering directory `d:/freepascal271'
-make -C rtl install
-make[4]: Entering directory `d:/freepascal271/rtl'
-make -C win64 all
-make[5]: Entering directory `d:/freepascal271/rtl/win64'
-make[5]: Leaving directory `d:/freepascal271/rtl/win64'
-d:/freepascal271/utils/fpcm/bin/i386-win32/fpcmake.exe -p -Tx86_64-win64 Makefil
-e.fpc
-process_begin: CreateProcess((null), d:/freepascal271/utils/fpcm/bin/i386-win32/
-fpcmake.exe -p -Tx86_64-win64 Makefile.fpc, ...) failed.
-make (e=2): The system cannot find the file specified.
-make[4]: *** [fpc_install] Error 2
-make[4]: Leaving directory `d:/freepascal271/rtl'
-make[3]: *** [rtl_install] Error 2
-make[3]: Leaving directory `d:/freepascal271'
-make[2]: *** [installbase] Error 2
-make[2]: Leaving directory `d:/freepascal271'
-make[1]: *** [installall] Error 2
-make[1]: Leaving directory `d:/freepascal271'
-make: *** [crossinstall] Error 2
-
-d:\freepascal271>
-
-## Steps to reproduce:
-
-here command that I typed on command-prompt :
-
-cd d:\freepascal271
-
-set myroot=d:\freepascal271
-set myFPC=d:\freepascal271\fpc\2.7.1
-set mybinutils=d:\freepascal271\binutils
-set mycrossbin=D:\freepascal271\binutils\aw-bincross\aw-win32-x86_64-win64
-
-set PATH=d:\freepascal271\binutils\i386-win32;D:\freepascal271\binutils\aw-bincross\aw-win32-x86_64-win64;d:\freepascal271\fpc\2.7.1\bin\i386-win32;
-
-make clean all OS_TARGET=win64 CPU_TARGET=x86_64 crossinstall CROSSBINDIR=%mycrossbin% BINUTILSPREFIX=x86_64-win64- INSTALL_PREFIX=%myFPC% DATA2INC=%myFPC%\utils\data2inc.exe
-
-## Additional information:
-
-
-I use ;
-1. Windows 7 Ultimate x64bit SP1 latest update
-2. make v.3.82
-3. FPC 2.6.2 as bootstrap compiler
-4. Follow Wiki explanation to build the compiler.
-
-
-Thank in advance,
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24500
-- **OS:** Windows 7 x64 SP1 Ultimate
-- **OS Build:** 6.1
-- **Build:** 24625
-- **Platform:** x86_64 - Win64
-- **Version:** 2.7.1
-- **Fixed in version:** 3.0.0",200
-91531515,2013-05-22 07:02:44.000,Generics fatal error for local var in method.,"
-Original Reporter info from Mantis: hnb
-
-- **Reporter name:** Maciej Izak
-
-
-## Description:
-
-// Generics fatal error for local var in method.
-
-``` pascal
-{$mode delphi}
-
-type
- TA = class
- private
- type
- TR = record
- A: T;
- end;
- end;
-
- TB = class(TA)
- public
- procedure Foo;
- end;
-
-procedure TB.Foo;
-var
- LR: TR; // This line causes an error ""Fatal: Compilation aborted""
-begin
-end;
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24463
-- **Version:** 2.7.1
-- **Fixed in version:** 3.0.0
-- **Fixed in revision:** 27861 (#639a59df92dae758bd5cfed1128c9f7626eccc76)",100
-91531499,2013-05-16 16:24:04.000,can not build RTL with 2.7.1 compiler,"
-Original Reporter info from Mantis: barlone @barloneD
-
-- **Reporter name:**
-
-
-## Description:
-
-OUTPUT
-Free Pascal Compiler version 2.7.1 [2013/04/02] for i386
-Copyright (c) 1993-2013 by Florian Klaempfl and others
-Target OS: Linux for i386
-Compiling system.pp
-systemh.inc(117,16) Error: Duplicate identifier ""FarPointer""
-systemh.inc(117,29) Error: Identifier not found ""NearFsPointer""
-systemh.inc(117,29) Error: Error in type definition
-systemh.inc(939,42) Error: Type ""FarPointer"" is not completely defined
-system.pp(48,34) Fatal: There were 4 errors compiling module, stopping
-
-i think it related with r24453
-
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24437
-- **OS:** XP
-- **Build:** r24514
-- **Platform:** Windows
-- **Version:** 2.7.1",100
-91531472,2013-05-08 15:41:53.000,for target win64 x86_64 trunk does not compile anymore,"
-Original Reporter info from Mantis: Necem
-
-- **Reporter name:**
-
-
-## Description:
-
-make clean install OS_TARGET=win64 CPU_TARGET=x86_64 ""INSTALL_PREFIX=..."" FPC=...
-results in :
-systemh.inc(160,16) Error: Duplicate identifier ""FarPointer""
-system.pp(121,34) Fatal: There were 1 errors compiling module, stopping
-Fatal: Compilation aborted
-
-## Additional information:
-
-Attached console output
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24404",200
-91531436,2013-05-05 22:18:35.000,"FPC Compiler Error: systemh.inc(160,16) Error: Duplicate identifier ""FarPointer""","
-Original Reporter info from Mantis: jshand2010
-
-- **Reporter name:** John Shand
-
-
-## Description:
-
-jshand@linux-60e5:~> cd fpc/
-jshand@linux-60e5:~/fpc> svn up
-Updating '.':
-U packages/winunits-base/src/shlobj.pp
-U rtl/win/wininc/struct.inc
-U rtl/win/wininc/redef.inc
-U rtl/win/wininc/base.inc
-U rtl/win/sockets.pp
-U rtl/inc/systemh.inc
-U rtl/objpas/classes/stringl.inc
-U rtl/objpas/typinfo.pp
-U tests/test/trtti6.pp
-A tests/test/trtti7.pp
-U compiler/nmem.pas
-U compiler/i8086/cpunode.pas
-U compiler/defcmp.pas
-U compiler/psystem.pas
-U compiler/ninl.pas
-U compiler/ncgmem.pas
-U compiler/mips/cgcpu.pas
-U compiler/mips/cpugas.pas
-U compiler/x86/nx86mem.pas
-U compiler/i386/n386mem.pas
-U compiler/pdecl.pas
-U compiler/symdef.pas
-U compiler/ncgrtti.pas
-Updated to revision 24453.
-jshand@linux-60e5:~/fpc> svn up
-Updating '.':
-At revision 24453.
-jshand@linux-60e5:~/fpc> ..
-jshand@linux-60e5:~> cd lazarus/
-jshand@linux-60e5:~/lazarus> svn up
-Updating '.':
-U components/lazutils/ttload.pas
-U components/lazutils/tttypes.pas
-U components/lazutils/fileutil.inc
-U components/lazutils/lazfileutils.pas
-U components/lazutils/winlazfileutils.inc
-U components/lazutils/easylazfreetype.pas
-U components/lazutils/fileutil.pas
-U tools/install/win/RemovedFiles32.iss
-U tools/install/win/RemovedFiles64.iss
-U ide/mouseactiondialog.lfm
-U lcl/interfaces/gtk2/gtk2callback.inc
-U lcl/interfaces/gtk2/gtk2winapi.inc
-U lcl/controls.pp
-U examples/lazresexplorer/resexplorer.res
-U examples/lazresexplorer/remainunit.lfm
-U examples/lazresexplorer/remainunit.pas
-U examples/lazresexplorer/resexplorer.lpi
-Updated to revision 41043.
-jshand@linux-60e5:~/lazarus> cd tools/install/
-jshand@linux-60e5:~/lazarus/tools/install> ./create_fpc_rpm.sh ~/fpc/
-RPM version 4.10.2
-extracting FPC from local svn ...
-A /home/jshand/tmp/fpc_patchdir/fpc/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/installer
-A /home/jshand/tmp/fpc_patchdir/fpc/installer/install.dat
-A /home/jshand/tmp/fpc_patchdir/fpc/installer/makelink.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/installer/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/installer/scroll.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/installer/writeidx.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/installer/install.def
-A /home/jshand/tmp/fpc_patchdir/fpc/installer/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/installer/winshell.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/installer/install.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/installer/insthelp.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/examples
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/examples/gnometest.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/examples/gconfexample.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/examples/gconfcallback1.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/examples/gconfcallback2.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/examples/testzvt.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/tests
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomecalulator.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomepopupmenu.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomecalculator.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomepropertybox.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomedialogutil.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeicontext.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomepixmap.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomescores.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomedialog.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomefileentry.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeinit.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomewinhints.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomefontpicker.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomedruidpagefinish.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeappbar.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomepaperselector.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomecanvasutil.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomenumberentry.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomemdigenericchild.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/libgnomeui.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomedentryedit.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomecanvas.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomecanvasload.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomepopuphelp.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomecolorpicker.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomemdichild.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeclient.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomecanvaswidget.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeapphelper.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomedock.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomecanvastext.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gtkpixmapmenuitem.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomedruidpagestart.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomecanvaspolygon.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomedateedit.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeiconlist.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomehref.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeprocbar.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gtkdial.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomegeometry.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnometypebuiltins.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeiconsel.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomemessagebox.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeentry.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomedruidpage.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeiconitem.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomecanvasrectellipse.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomedruid.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomemdi.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeanimator.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeabout.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeiconentry.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gtkclock.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomemdisession.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeapputil.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomecanvasimage.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeuidefs.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomeapp.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomepixmapentry.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomestock.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomecanvasline.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnomeui/gnomedruidpagestandard.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/gconfclient
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/gconfclient/gconfchangeset.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/gconfclient/gconfclient.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/gconfclient/gconflisteners.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libart.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/gconf
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/gconf/gconfschema.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/gconf/gconf.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/gconf/gconfengine.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/gconf/gconferror.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/gconf/gconfglibpublic.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/gconf/gconfvalue.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomeurl.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomemimeinfo.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomedentry.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomeconfig.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomepaper.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomescore.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/libgnome.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomeutil.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomei18n.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomemetadata.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomeexec.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnometriggers.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomemime.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomesound.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomehelp.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/libgnome/gnomeremote.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/zvt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/zvt/vt.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/zvt/lists.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/zvt/libzvt.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/src/zvt/vtx.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/gnome1/Makefile.fpc.fpcmake
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/tests
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/ftpapi.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/mcidrv.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/mmbase.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/wpstk.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/clkdll.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/hwvideo.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/dive.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/buildall.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/mci.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/sw.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/lvm.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/som.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/mmio.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/src/mciapi.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/Makefile.fpc.fpcmake
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/readme.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/examples
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/examples/mciapi2.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/examples/clktest.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/examples/ftptest.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/examples/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/examples/lvmtest.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/examples/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/os2units/examples/mciapi1.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/examples
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/examples/loadlibdemo.lpi
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/examples/fbadmindemo.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/examples/pqeventstest.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/examples/loadlibdemo.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/examples/fbeventstest.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/database.ini.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testsqlfiles.lpi
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/tcparser.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testspecifictdbf.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/memdstoolsunit.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/sqldbtoolsunit.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/inieditor.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/tcsdfdata.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testsqlfiles.lpr
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/dbtestframework.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/bufdatasettoolsunit.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testbasics.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/dbtestframework_gui.lpi
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testsqlscanner.lpi
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testdbbasics.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testdatasources.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/tcgensql.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testbufdatasetstreams.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/dbtestframework_gui.lpr
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/inieditor.lfm
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testsqlscanner.lpr
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testsqlscript.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/sdfdstoolsunit.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testdbexport.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/README.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/toolsunit.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/tcsqlscanner.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/test.json
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testfieldtypes.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testjsondataset.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/dbftoolsunit.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testspecifictbufdataset.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/tests/testdddiff.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/db.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/fpmake.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/database.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/bufdataset_parser.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/dbcoll.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/dbconst.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/fields.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/dbwhtml.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/dsparams.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/xmldatapacketreader.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/dataset.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/sqlscript.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/datasource.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/base/bufdataset.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/README.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sdf
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sdf/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sdf/fpc.ssx
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sdf/sdfdata.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sdf/testfix.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sdf/fpc.ssy
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sdf/testsdf.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sdf/fpmake.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sdf/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sdf/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpddodbc.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpdddiff.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpddmysql40.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/buildd.lpi
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpddmysql50.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpddmysql41.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpddmysql51.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpddmysql55.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpddpq.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/buildd.lpr
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpddsqlite3.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpddfb.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpddregstd.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpdddbf.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpddoracle.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpdatadict.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/datadict/fpddsqldb.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/paradox
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/paradox/paradox.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/paradox/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/paradox/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_dbffile.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_idxcur.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_str_es.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_str_ita.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_fields.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_str.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_reg.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_prscore.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_cursor.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/readme.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_lang.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/getstrfromint.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_idxfile.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_common.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_parser.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_memo.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_str.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_str_fr.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_str_nl.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_str_pl.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_pgfile.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_pgcfile.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_struct.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_str_pt.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/testdbf.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_prssupp.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/package.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_common.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/fpmake.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_str_ru.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_wtil.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/tdbf_l.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_avl.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/history.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_prsdef.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/dbf_collate.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/dbase/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sql
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sql/fpsqltree.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sql/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sql/fpsqlparser.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sql/fpsqlscanner.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sql/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/fpstdexports.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/fpfixedexport.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/fpsqlexport.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/fpxmlxsdexport.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/fptexexport.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/fpsimplejsonexport.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/fpdbexport.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/XMLXSDExportReadme.TXT
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/fpsimplexmlexport.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/fpcsvexport.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/fprtfexport.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/export/fpdbfexport.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqlite
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqlite/concurrencyds.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqlite/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqlite/customsqliteds.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqlite/testds.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqlite/browseds.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqlite/sqliteds.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqlite/fpmake.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqlite/createds.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqlite/sqlite3ds.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqlite/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqlite/fillds.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqlite/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/Dataset.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/codegen
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/codegen/buildddcg.lpr
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/codegen/fpcgcreatedbf.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/codegen/fpcgdbcoll.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/codegen/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/codegen/fpcgtiopf.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/codegen/fpddcodegen.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/codegen/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/codegen/buildddcg.lpi
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/codegen/fpcgsqlconst.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/codegen/fpddpopcode.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/memds
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/memds/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/memds/README.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/memds/fpmake.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/memds/testpop.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/memds/testld.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/memds/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/memds/testopen.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/memds/testcp.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/memds/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/memds/memds.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/testsqldb.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/sqldb.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mssql
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mssql/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mssql/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mssql/fpmake.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mssql/mssqlconn.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mssql/readme.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mssql/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/sqlite
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/sqlite/sqlite3backup.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/sqlite/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/sqlite/sqlite3conn.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/sqlite/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/oracle
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/oracle/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/oracle/oracleconnection.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/oracle/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mysql
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mysql/mysql55conn.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mysql/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mysql/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mysql/mysql40conn.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mysql/mysql4conn.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mysql/mysql41conn.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mysql/mysql50conn.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mysql/fpmake.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mysql/mysql51conn.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mysql/mysqlconn.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/mysql/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/postgres
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/postgres/fpmake.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/postgres/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/postgres/pqconnection.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/postgres/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/postgres/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/postgres/pqeventmonitor.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/odbc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/odbc/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/odbc/odbcconn.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/odbc/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/sqldblib.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/readme.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/fpmake.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/interbase
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/interbase/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/interbase/ibconnection.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/interbase/fpmake.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/interbase/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/interbase/fbadmin.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/interbase/fbeventmonitor.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/interbase/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/examples
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/examples/cfilltable.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/examples/sqldbexampleunit.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/examples/fedittable.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/examples/database.ini
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/examples/gfiltertable.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/examples/alisttables.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/examples/efilltableparams.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/examples/dshowtable.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/examples/bcreatetable.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/sqldb/examples/readme.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/json
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/json/fpjsondataset.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/json/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/src/json/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-db/Makefile.fpc.fpcmake
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/netwlibc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/netwlibc/resolve.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/netdb.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/ssockets.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/cnetdb.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/resolve.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/win
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/win/resolve.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/fpsock.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/os2
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/os2/resolve.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/unix
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/unix/resolve.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/netware
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/netware/resolve.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/src/httpsvlt.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/Makefile.fpc.fpcmake
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/README.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/testhst.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/ip6test.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/testuri.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/testhosts.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/svrclass.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/testproto.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/rpccli.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/cnslookup.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/testdns.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/rpcserv.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/svrclass_xmlrpc.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/testnet.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/testsvc.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-net/examples/readme.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/machosubwriter.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/dfmreader.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/elfreader.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/resmerger.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/versionresource.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/elfwriter.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/groupresource.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/externaltypes.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/coffconsts.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/winpeimagereader.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/icocurtypes.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/machoreader.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/versiontypes.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/resreader.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/elfdefaulttarget.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/machotypes.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/groupiconresource.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/acceleratorsresource.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/strtable.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/resfactory.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/bitmapresource.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/machowriter.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/reswriter.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/resource.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/elftypes.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/elfsubreader.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/machodefaulttarget.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/resdatastream.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/elfconsts.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/coffreader.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/xcoffwriter.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/cofftypes.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/groupcursorresource.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/tlbreader.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/externalreader.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/resourcetree.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/fpcrestypes.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/elfsubwriter.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/coffwriter.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/machosubreader.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/externalwriter.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/versionconsts.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/machoconsts.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/src/stringtableresource.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/Makefile.fpc.fpcmake
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/groupresource.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/coffwriter.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/machoreader.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/makehtml.sh
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/resreader.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/acceleratorsresource.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/versionconsts.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/resfactory.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/fpdoc.css
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/machowriter.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/reswriter.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/resource.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/dfmreader.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/elfreader.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/clean.sh
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/versionresource.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/elfconsts.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/groupcursorresource.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/cofftypes.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/elfwriter.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/externalreader.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/externaltypes.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/resourcetree.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/winpeimagereader.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/versiontypes.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/machotypes.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/groupiconresource.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/externalwriter.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/bitmapresource.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/stringtableresource.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/resdatastream.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/xml/coffreader.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/fcl-res/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/tests
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/imagemagick.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/fx.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/magick_wand.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/magick_attribute.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/pixel.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/type.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/semaphore.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/compare.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/pixel_iterator.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/pixel_wand.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/buildim.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/magick_type.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/effect.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/magick_image.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/draw.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/cache_view.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/quantize.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/constitute.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/cache.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/drawing_wand.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/src/statistic.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/Makefile.fpc.fpcmake
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/Makefile
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/examples
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/examples/wanddemo.dpr
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/examples/image.png
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/examples/screenshot.lpr
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/examples/wanddemo.lpr
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/imagemagick/examples/wandpixelaccess.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/examples
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/Make Cocoa Headers.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/frameworks.xml
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/coredata
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/coredata/CoreData.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/CoreData.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/webkit
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/webkit/WebKit.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/webkit/UndefinedTypes.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/foundation
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/foundation/Foundation.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/WebKit.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/patches
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/patches/NSObjCRuntime.patch
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/patches/NSBundle.patch
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/appkit
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/appkit/AppKit.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/appkit/CIColor.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/UndefinedTypes.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/CocoaAll.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/InlineFunctions.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/quartzcore
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/cocoa-skel/src/quartzcore/QuartzCore.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/source
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/source/objp_base.php
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/source/objp.php
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/source/utilities.php
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/source/docset.php
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/make-cocoa-headers.sh
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src/iPhoneAll.pas
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src/UndefinedTypes.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src/InlineFunctions.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src/quartzcore
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src/quartzcore/QuartzCore.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src/uikit
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src/uikit/UIKit.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src/foundation
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src/foundation/Foundation.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src/patches
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src/patches/NSObjCRuntime.patch
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src/opengles
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/uikit-skel/src/opengles/OpenGLES.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/parser.php
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/doc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/doc/How to parse frameworks.rtf
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/doc/Make Single Header.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/doc/Make iPhone Headers.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/doc/Make Cocoa Headers.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/Using Installer Script.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/make-ios-headers.sh
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/patches
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/patches/uikit-3.2.patch
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/patches/uikit-4.2.patch
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/patches/cocoa-coredata-webkit.patch
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/install_objp.sh
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/utils/Make iPhone Headers.txt
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/fpmake.pp
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/Makefile.fpc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSComboBox.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPICTImageRep.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTextInputContext.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSButton.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSDatePicker.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSImageView.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSViewController.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTextView.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPathComponentCell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSSliderCell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSController.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSAnimationContext.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSFontPanel.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSInputServer.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSAccessibility.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSSound.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPathCell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSMenuView.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSResponder.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSSpellProtocol.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSLevelIndicator.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSMatrix.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSSpellChecker.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSCIImageRep.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSAppleScriptExtensions.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSMoview.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTextStorage.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSSearchField.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSColorList.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSUserInterfaceValidation.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSDocument.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSMovie.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSEvent.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSImageCell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTouch.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSSlider.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSArrayController.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSRulerView.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTextContainer.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSImageRep.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSInputManager.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTextAttachment.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSGradient.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSWorkspace.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPopUpButton.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSSecureTextField.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSSpeechRecognizer.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTreeController.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSForm.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSFont.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSLayoutManager.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSUserDefaultsController.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPrintPanel.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSErrors.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSAnimation.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSSpeechSynthesizer.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSControl.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSToolbarItem.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSStringDrawing.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSImage.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSMenuItemCell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSText.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSApplicationScripting.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSSplitView.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/AppKit.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTextFieldCell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSColorSpace.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSWindowScripting.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPredicateEditorRowTemplate.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTrackingArea.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSAttributedString.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSDockTile.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSEPSImageRep.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSProgressIndicator.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSUserInterfaceItemSearching.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSColorWell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPasteboardItem.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSApplication.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSMenu.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPrintInfo.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSObjectController.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSOutlineView.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSMovieView.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSButtonCell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSDatePickerCell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSSavePanel.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSOpenGLView.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSClipView.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSHelpManager.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTokenFieldCell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSScroller.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSBox.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTextField.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSScrollView.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPathControl.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPersistentDocument.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSDocumentScripting.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSStatusBar.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSSearchFieldCell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPageLayout.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSWindowController.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSColorPicker.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSSegmentedControl.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSATSTypesetter.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTextList.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSCachedImageRep.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSStepperCell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSDocumentController.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSBrowser.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPDFImageRep.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSColorPicking.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTokenField.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSCustomImageRep.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSDrawer.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSParagraphStyle.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSGlyphGenerator.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSRulerMarker.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPopUpButtonCell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSFormCell.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSGraphicsContext.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSTreeNode.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSFontDescriptor.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSNibLoading.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSNib.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSDictionaryController.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSView.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSPrintOperation.inc
-A /home/jshand/tmp/fpc_patchdir/fpc/packages/cocoaint/src/appkit/NSCursor.inc
-A /home/jshand/
-
-## Steps to reproduce:
-
-run the script ./create_fpc_rpm.sh
-
-## Additional information:
-
-LAZARUS:
-
-Working Copy Root Path: /home/jshand/lazarus
-URL: http://svn.freepascal.org/svn/lazarus/trunk
-Repository Root: http://svn.freepascal.org/svn/lazarus
-Repository UUID: 4005530d-fff6-0310-9dd1-cebe43e6787f
-Revision: 41043
-Node Kind: directory
-Schedule: normal
-Last Changed Author: juha
-Last Changed Rev: 41043
-Last Changed Date: 2013-05-06 05:56:23 +1200 (Mon, 06 May 2013)
-
-FPC:
-
-Working Copy Root Path: /home/jshand/fpc
-URL: http://svn.freepascal.org/svn/fpc/trunk
-Repository Root: http://svn.freepascal.org/svn/fpc
-Repository UUID: 3ad0048d-3df7-0310-abae-a5850022a9f2
-Revision: 24453
-Node Kind: directory
-Schedule: normal
-Last Changed Author: nickysn
-Last Changed Rev: 24453
-Last Changed Date: 2013-05-06 05:22:37 +1200 (Mon, 06 May 2013)
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24383
-- **OS:** opensuse
-- **OS Build:** 12.3
-- **Platform:** linux x86_64
-- **Version:** 2.7.1",100
-91531388,2013-04-26 00:43:38.000,trunk > r24324 fails to build on 64-bit linux : tcgraisenode.pass_generate_code,"
-Original Reporter info from Mantis: tangentstorm
-
-- **Reporter name:** michal wallace
-
-
-## Description:
-
-User loesje_ showed up in #fpc and reported build failure:
-
-/bin/mkdir -p x86_64/units/x86_64-linux
-/home/users/joost/Desktop/ppcx64 -Ur -Xs -O2 -n -Fux86_64 -Fusystems -Fu/home/svn/fpc-trunk/rtl/units/x86_64-linux -Fix86_64 -FE. -FUx86_64/units/x86_64-linux -Cg -dRELEASE -dx86_64 -dGDB -dBROWSERLOG -Fux86 -Sew pp.pas
-nx64flw.pas(32,37) Error: Identifier not found ""tcgraisenode""
-nx64flw.pas(32,37) Error: class type expected, but got ""&LtPos;erroneous type>""
-nx64flw.pas(33,17) Error: There is no method in an ancestor class to be overridden: ""tx64raisenode.pass_generate_code;""
-nx64flw.pas(52,1) Fatal: There were 3 errors compiling module, stopping
-Fatal: Compilation aborted
-make[5]: *** [ppcx64] Error 1
-make[5]: Leaving directory `/home/svn/fpc-trunk/compiler'
-make[4]: *** [next] Error 2
-make[4]: Leaving directory `/home/svn/fpc-trunk/compiler'
-make[3]: *** [ppc1] Error 2
-make[3]: Leaving directory `/home/svn/fpc-trunk/compiler'
-make[2]: *** [cycle] Error 2
-make[2]: Leaving directory `/home/svn/fpc-trunk/compiler'
-make[1]: *** [compiler_cycle] Error 2
-make[1]: Leaving directory `/home/svn/fpc-trunk'
-make: *** [build-stamp.x86_64-linux] Error 2
-
-
-I replicated the problem and narrowed the culprit down to r24324, when the 8086 changes were merged in.
-
-The cause is that ncgflw.tcgraisenode was removed:
-
-http://svn.freepascal.org/cgi-bin/viewvc.cgi/trunk/compiler/ncgflw.pas?r1=24324&r2=24323&pathrev=24324
-
-Maybe it can just be re-added for platforms that depend on it?
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24325
-- **OS:** Linux
-- **OS Build:** Kubuntu 12
-- **Build:** 24324
-- **Platform:** x86_64
-- **Fixed in version:** 3.0.0
-- **Fixed in revision:** 24327 (#4cfc693a632a3a6212c7bf0d8b27975d15f7f18a)-24328 (#4f8fcb7f15eda56ea0e276bc7ee3a5da13c90f4a)",100
-91531386,2013-04-25 11:43:38.000,"[WinCE] - Building Compiler was failed, due ""dos.pp"" has multiple error.","
-Original Reporter info from Mantis: takeda99
-
-- **Reporter name:** Takeda Matsuki
-
-
-## Description:
-
-Here chunck of Error log :
-
-\---------------------------------------
-......
-
-make[5]: Entering directory `d:/freepascal271/rtl/wince'
-d:/freepascal271/binutils/i386-win32/gmkdir.exe -p d:/freepascal271/rtl/units/ar
-m-wince
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Twince -Parm -XParm-wince- -Xr -Ur
- -Xs -O2 -n -Fi../inc -Fi../arm -Fi../win -FDD:\freepascal271\binutils\aw-bincro
-ss\aw-win32-arm-wince -FE. -FUd:/freepascal271/rtl/units/arm-wince -darm -dRELEA
-SE -Us -Sg system.pp
-text.inc(1981,14) Warning: Implicit string type conversion from ""AnsiString"" to
-""UnicodeString""
-text.inc(2200,53) Warning: Implicit string type conversion with potential data l
-oss from ""UnicodeString"" to ""AnsiString""
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Twince -Parm -XParm-wince- -Xr -Ur
- -Xs -O2 -n -Fi../inc -Fi../arm -Fi../win -FDD:\freepascal271\binutils\aw-bincro
-ss\aw-win32-arm-wince -FE. -FUd:/freepascal271/rtl/units/arm-wince -darm -dRELEA
-SE ../inc/uuchar.pp
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Twince -Parm -XParm-wince- -Xr -Ur
- -Xs -O2 -n -Fi../inc -Fi../arm -Fi../win -FDD:\freepascal271\binutils\aw-bincro
-ss\aw-win32-arm-wince -FE. -FUd:/freepascal271/rtl/units/arm-wince -darm -dRELEA
-SE ../inc/fpintres.pp
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Twince -Parm -XParm-wince- -Xr -Ur
- -Xs -O2 -n -Fi../inc -Fi../arm -Fi../win -FDD:\freepascal271\binutils\aw-bincro
-ss\aw-win32-arm-wince -FE. -FUd:/freepascal271/rtl/units/arm-wince -darm -dRELEA
-SE ../inc/ctypes.pp
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Twince -Parm -XParm-wince- -Xr -Ur
- -Xs -O2 -n -Fi../inc -Fi../arm -Fi../win -FDD:\freepascal271\binutils\aw-bincro
-ss\aw-win32-arm-wince -FE. -FUd:/freepascal271/rtl/units/arm-wince -darm -dRELEA
-SE -I../objpas ../objpas/objpas.pp
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Twince -Parm -XParm-wince- -Xr -Ur
- -Xs -O2 -n -Fi../inc -Fi../arm -Fi../win -FDD:\freepascal271\binutils\aw-bincro
-ss\aw-win32-arm-wince -FE. -FUd:/freepascal271/rtl/units/arm-wince -darm -dRELEA
-SE -I../arm ../inc/strings.pp
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Twince -Parm -XParm-wince- -Xr -Ur
- -Xs -O2 -n -Fi../inc -Fi../arm -Fi../win -FDD:\freepascal271\binutils\aw-bincro
-ss\aw-win32-arm-wince -FE. -FUd:/freepascal271/rtl/units/arm-wince -darm -dRELEA
-SE -I./wininc windows.pp
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Twince -Parm -XParm-wince- -Xr -Ur
- -Xs -O2 -n -Fi../inc -Fi../arm -Fi../win -FDD:\freepascal271\binutils\aw-bincro
-ss\aw-win32-arm-wince -FE. -FUd:/freepascal271/rtl/units/arm-wince -darm -dRELEA
-SE dos.pp
-dos.pp(206,45) Error: Incompatible type for arg no. 9: Got ""Pointer"", expected ""
-STARTUPINFO""
-dos.pp(211,9) Warning: Local variable ""PI"" does not seem to be initialized
-dos.pp(366,35) Error: Incompatible type for arg no. 1: Got ""Array[0..260] Of Wid
-eChar"", expected ""PChar""
-dos.pp(568) Fatal: There were 2 errors compiling module, stopping
-Fatal: Compilation aborted
-make[5]: *** [dos.ppu] Error 1
-make[5]: Leaving directory `d:/freepascal271/rtl/wince'
-make[4]: *** [wince_all] Error 2
-make[4]: Leaving directory `d:/freepascal271/rtl'
-make[3]: *** [rtl] Error 2
-make[3]: Leaving directory `d:/freepascal271/compiler'
-make[2]: *** [cycle] Error 2
-make[2]: Leaving directory `d:/freepascal271/compiler'
-make[1]: *** [compiler_cycle] Error 2
-make[1]: Leaving directory `d:/freepascal271'
-make: *** [build-stamp.arm-wince] Error 2
-
-## Additional information:
-
-
-I use ;
-1. Windows 7 Ultimate x64bit SP1 latest update
-2. make v.3.82
-3. FPC 2.6.2 as bootstrap compiler
-4. Follow Wiki explanation to build the compiler.
-
-
-Thank in advance,
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24322
-- **OS:** Windows 7 Ultimate
-- **OS Build:** 6.1
-- **Build:** r24319
-- **Platform:** WinCE
-- **Version:** 2.7.1
-- **Fixed in revision:** 24420 (#930b76e8fbf4ba82dbf4f11ea73cefd841476b04)",200
-91531368,2013-04-16 23:25:49.000,Generics type name conflict (Identifier not found),"
-Original Reporter info from Mantis: hnb
-
-- **Reporter name:** Maciej Izak
-
-
-## Description:
-
-I can't compile attached code (in Delphi it's ok):
-
-``` pascal
-{$mode delphi}{$H+}
-
-type
- TA = class(TObject);
-
- TB = class(TA< T >);
-
- TC = class
- public
- type
- TA = class(TB);
-
- function Foo: TA; virtual; abstract; // Error: Identifier not found ""TA$1""
- end;
-
-var
- C: TC;
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24287
-- **Version:** 2.7.1
-- **Fixed in version:** 3.1.1",100
-91531365,2013-04-16 11:27:20.000,"Generics syntax error, "">"" expected but ""<"" found","
-Original Reporter info from Mantis: hnb
-
-- **Reporter name:** Maciej Izak
-
-
-## Description:
-
-I can't compile attached code:
-
-``` pascal
-{$mode delphi}{$H+}
-
-type
- TA = record
- end;
-
- TB = class
- end;
-
- TC = class(TB>)
- end;
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24283
-- **Version:** 2.7.1
-- **Fixed in version:** 3.3.1
-- **Monitored by:** » PeterJanRoes (Peter-Jan Roes), » Andrey Paramonov (Andrey Paramonov), » daniel_sap (Daniel Sapoundjiev)",100
-91531364,2013-04-16 10:53:15.000,Generics forward declaration not solved,"
-Original Reporter info from Mantis: hnb
-
-- **Reporter name:** Maciej Izak
-
-
-## Description:
-
-I can't compile attached code:
-
-``` pascal
-{$mode delphi}{$H+}
-type
- TA = class
- class function Foo: T; // Error: Forward declaration not solved ""class procedure Foo:AnsiString;""
- end;
-
- TB = class
- constructor Create;
- end;
-
-class function TA.Foo: T;
-begin
-
-end;
-
-constructor TB.Create;
-begin
- TA.Foo;
-end;
-
-var
- b: TB;
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24282
-- **Version:** 2.7.1",100
-91531325,2013-04-10 10:21:14.000,Generics methods/class methods syntax error,"
-Original Reporter info from Mantis: hnb
-
-- **Reporter name:** Maciej Izak
-
-
-## Description:
-
-I can't compile attached code (in Delphi it's working):
-
-``` pascal
-{$MODE DELPHI}
-type
- TX = class
- procedure Foo; // Fatal: Syntax error, "";"" expected but ""<"" found
- class procedure Foo2;
- end;
-```
-
-{ TX }
-
-``` pascal
-class procedure TX.Foo2;
-begin
-
-end;
-
-procedure TX.Foo;
-begin
-
-end;
-
-var
- x: TX;
-begin
- TX.Foo2;
- x := TX.Create;
- x.Foo;
- x.Free;
-end.
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24254
-- **Version:** 2.7.1",100
-91531323,2013-04-07 17:13:25.000,"[i386-WinCE] gles20.pas : Error: Incompatible type for arg no. 2: Got ""Pchar"", expecte d ""PWideChar""","
-Original Reporter info from Mantis: takeda99
-
-- **Reporter name:** Takeda Matsuki
-
-
-## Description:
-
-Try to build i386-WinCE was failed.
-
-Here the chunk of report :
-
-......
-[ 62%] Skipped package libsee which has been disabled for target i386-wince
-[ 63%] Skipped package libvlc which has been disabled for target i386-wince
-[ 64%] Skipped package libxml2 which has been disabled for target i386-wince
-[ 65%] Skipped package lua which has been disabled for target i386-wince
-[ 66%] Skipped package mad which has been disabled for target i386-wince
-[ 66%] Skipped package modplug which has been disabled for target i386-wince
-[ 67%] Skipped package ncurses which has been disabled for target i386-wince
-[ 68%] Skipped package newt which has been disabled for target i386-wince
-Start compiling package numlib for target i386-wince.
-```
- Compiling numlib\BuildUnit_numlib.pp
- Compiling .\numlib\src\dsl.pas
- Compiling .\numlib\src\typ.pas
- Compiling .\numlib\src\omv.pas
- Compiling .\numlib\src\mdt.pas
- Compiling .\numlib\src\det.pas
- Compiling .\numlib\src\eigh1.pas
- Compiling .\numlib\src\eigh2.pas
- Compiling .\numlib\src\eig.pas
- Compiling .\numlib\src\int.pas
- Compiling .\numlib\src\inv.pas
- Compiling .\numlib\src\iom.pas
- Compiling .\numlib\src\sle.pas
- Compiling .\numlib\src\spe.pas
- Compiling .\numlib\src\ipf.pas
- Compiling .\numlib\src\numlib.pas
- Compiling .\numlib\src\ode.pas
- Compiling .\numlib\src\roo.pas
- Compiling .\numlib\src\spl.pas
-```
-[ 69%] Compiled package numlib
-[ 70%] Skipped package nvapi which has been disabled for target i386-wince
-[ 71%] Skipped package objcrtl which has been disabled for target i386-wince
-Start compiling package oggvorbis for target i386-wince.
-```
- Compiling oggvorbis\BuildUnit_oggvorbis.pp
- Compiling .\oggvorbis\src\ogg.pas
- Compiling .\oggvorbis\src\vorbis.pas
-```
-[ 72%] Compiled package oggvorbis
-[ 72%] Skipped package openal which has been disabled for target i386-wince
-[ 73%] Skipped package opencl which has been disabled for target i386-wince
-Start compiling package opengles for target i386-wince.
-```
- Compiling opengles\BuildUnit_opengles.pp
- Compiling .\opengles\src\gles20.pas
-```
-The installer encountered the following error:
-External command ""d:/freepascal271/compiler/ppcross386.exe -Twince -FUopengles\u
-nits\i386-wince\ -Fud:\freepascal271\rtl\units\i386-wince\ -Fuopengles\src -Twin
-ce -XPi386-wince- -Xr -Ur -Xs -O2 -n -Fud:/freepascal271/rtl/units/i386-wince -d
-i386 -dRELEASE -viq opengles\BuildUnit_opengles.pp"" failed with exit code 1. Con
-sole output:
-Target OS: WinCE for i386
-Compiling opengles\BuildUnit_opengles.pp
-Compiling .\opengles\src\gles20.pas
-gles20.pas(1368,44) Error: Incompatible type for arg no. 2: Got ""Pchar"", expecte
-d ""PWideChar""
-gles20.pas(1468,30) Error: Incompatible type for arg no. 1: Got ""Pchar"", expecte
-d ""PWideChar""
-gles20.pas(1690,33) Error: Incompatible type for arg no. 1: Got ""Pchar"", expecte
-d ""PWideChar""
-gles20.pas(1875,4) Fatal: There were 3 errors compiling module, stopping
-Fatal: Compilation aborted
-
-make[2]: *** [all] Error 1
-make[2]: Leaving directory `d:/freepascal271/packages'
-make[1]: *** [packages_all] Error 2
-make[1]: Leaving directory `d:/freepascal271'
-make: *** [build-stamp.i386-wince] Error 2
-
-d:\freepascal271>
-
-## Additional information:
-
-1. I use Windows 7 Ultimate x64 SP1 with latest update.
-2. FPC 2.6.0 as starter
-3. Make v3.82
-4. Using normal procedure/step to built it.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24242
-- **OS:** Windows 7 Ultimate x64 SP1
-- **OS Build:** 6.1
-- **Build:** 24183
-- **Platform:** i386-WinCE
-- **Version:** 2.7.1
-- **Fixed in version:** 2.6.4
-- **Fixed in revision:** 25927 (#c2c73a8ad5c37a00e268b776712af65968d3eb45)",100
-91531318,2013-04-05 09:41:58.000,Package cairo is not being built on win64 platform,"
-Original Reporter info from Mantis: madeinoz
-
-- **Reporter name:** Stephen Eaton
-
-
-## Description:
-
-On windows 7 64 OS the package cairo is not included in the makefile and is not being built when a make is performed on a checkout of FPC from SVN is performed.
-
-This is causing win64 version of lazarus build to fail due to cairocanvas not able to find cairo
-
-## Steps to reproduce:
-
-clean build on Windows 7 64
-
-## Additional information:
-
-lazarus bug tracker of original problem I logged #24215
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24232
-- **OS:** Windows
-- **OS Build:** Windows 7
-- **Build:** 23948
-- **Platform:** win64
-- **Version:** 2.6.2",300
-91531311,2013-04-02 16:02:44.000,Patch: RTTI for tkProcVar,"
-Original Reporter info from Mantis: Necem
-
-- **Reporter name:**
-
-
-## Description:
-
-Well Why did I do this patch:
-To implement a less ""hacky"" way of generic method invokation.
-Supporting several calling conventions I can call a method based on
-the
-address and an array of const as parameters.
-Without RTTI there would've been a need for hard coded meta
-information,
-wich is error prone and rather time consuming.
-Since tkMethod supports RTTI any method contained in a record, class,
-object would work without additional meta information.
-
-## Additional information:
-
-Allows to get RTTI for alle tkProcVar types that have a TypeSym meaning:
-``` pascal
-type TFoo = procedure(bar : byte);
-var
- // this will not generate any TypeData structure
- noTypeSym : procedure(bar : byte);
- // while this will
- withTypeSym : TFoo;
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24219
-- **Fixed in version:** 3.0.0
-- **Fixed in revision:** 24468 (#bc973e538d2a63a1252d81247007de64cffaa1d8)
-- **Monitored by:** » luizamerico (Luiz Americo)",100
-91531307,2013-04-02 06:37:02.000,Textmode Ide 1.0.12 simple asm turbo pascal compatible code not work,"
-Original Reporter info from Mantis: atiati100
-
-- **Reporter name:** Sarok Attila
-
-
-## Description:
-
-``` pascal
-Begin
- Asm
- Mov Ax, 100;
- end;
-end.
-```
-
-{EAX work not also }
-
-## Additional information:
-
-in the source file (.pas) the Free Pascal Ide show green the asm code.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24212
-- **OS:** Windows
-- **OS Build:** XP Prof. SP3
-- **Platform:** PC",100
-91531223,2013-03-25 09:06:58.000,egyszerű for ciklus timerrel listboxxal es szépen akad rádásul nem lehet lezárni,"
-Original Reporter info from Mantis: atiati100
-
-- **Reporter name:** Sarok Attila
-
-
-## Description:
-
-``` pascal
-procedure TForm1.IdleTimer1Timer(Sender: TObject);
- var
- i : integer;
-begin
- for i := 1 to 1000000 do begin
- listbox1.items.add(inttostr(i));
- application.ProcessMessages;
- end;
-end;
-```
-
-## Additional information:
-
-nem tud scrollozni nem tudja lecsukni a programot
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24133
-- **OS:** Windows
-- **OS Build:** XP Prof. SP3
-- **Platform:** PC
-- **Version:** 2.6.2",100
-91531189,2013-03-21 17:46:43.000,TSQLQuery has no means to clear indexes after a sort has been performed.,"
-Original Reporter info from Mantis: snorkel
-
-- **Reporter name:**
-
-
-## Description:
-
-TSQLQuery and hence TCustomBufDataset has no way to clear added indexes when sorting. I added the following public procedure to fix the issue:
-
-``` pascal
-procedure TCustomBufDataset.ClearIndexes;
-var
- i:integer;
-begin
- For I:=0 to Length(FIndexes)-1 do
- FreeAndNil(Findexes[I]);
- SetLength(FIndexes,0);
- FIndexesCount:=0;
-end;
-```
-
-## Steps to reproduce:
-
-Add indexes to sort columns, then change the SQL and a error is raised that
-the field used in the old index cannot be found.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24110
-- **Version:** 2.6.2
-- **Fixed in version:** 3.0.0
-- **Fixed in revision:** 26719 (#f59a2272d9f8b3f9d65387de7ba29b16ee4ffefe)
-- **Target version:** 3.0.0",100
-91531165,2013-03-18 11:05:57.000,"Wrong behavior of generic ""record parameter""","
-Original Reporter info from Mantis: hnb
-
-- **Reporter name:** Maciej Izak
-
-
-## Description:
-
-Check out attached code:
-
-``` pascal
-program project4;
-
-{$mode delphi}
-
-type
- TA = record
- end;
-
- TUnamanagedRec = record
- x: integer;
- end;
-
- TManagedRec = record
- s: string;
- end;
-
-var
- a: TA; // should pass and it is ok
- b: TA; // should pass and it is ok
- d: TA; // should pass but it's not ok in FPC! Error: Record type expected
- e: TA; // should pass but it's not ok in FPC! Error: Record type expected
- f: TA; // shouldn't pass and it's half ok. Expected message is - E2512 Type parameter 'T' must be a non-nullable value type!
- g: TA; // shouldn't pass and it's half ok. Expected message is - E2512 Type parameter 'T' must be a non-nullable value type!
- h: TA; // shouldn't pass and it's half ok. Expected message is - E2512 Type parameter 'T' must be a non-nullable value type!
- // and so on...
-begin
-end.
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24073
-- **Version:** 2.7.1
-- **Fixed in revision:** 35739 (#e4565378db6836c0e19e19eb8f59b5a78ad171cc)",100
-91531164,2013-03-18 10:52:45.000,Generics fatal error for generic record specialization inside class.,"
-Original Reporter info from Mantis: hnb
-
-- **Reporter name:** Maciej Izak
-
-
-## Description:
-
-""Fatal: Compilation aborted"" for attached code:
-
-``` pascal
-program project3;
-
-{$mode delphi}
-
-type
- TA = record
- end;
-
- TB = class
- public
- type
- TC = TA;
-
- TD = record
- Foo: TC; // ! FATAL !
- end;
- end;
-
-begin
-end.
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24072
-- **Version:** 2.7.1
-- **Fixed in version:** 3.0.0
-- **Fixed in revision:** 27861 (#639a59df92dae758bd5cfed1128c9f7626eccc76)",100
-91531163,2013-03-18 10:40:23.000,Generics internal error 200512113,"
-Original Reporter info from Mantis: hnb
-
-- **Reporter name:** Maciej Izak
-
-
-## Description:
-
-I can't compile attached code:
-
-``` pascal
-program project2;
-
-{$mode delphi}
-
-type
- TA = class
- end;
-
- TB = class
- public
- type
- TC = class;
- TC = class(TA)
- private
- procedure Foo; virtual; abstract;
- end;
- end;
-
-var
- X: TB;
-begin
-end.
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24071
-- **Version:** 2.7.1
-- **Fixed in version:** 3.0.0
-- **Fixed in revision:** 24572 (#2c792659cef9bd8bcd2c91aa00e1854943413a6b)",100
-91531157,2013-03-17 11:58:10.000,Global Generic template references static symtable for procedure,"
-Original Reporter info from Mantis: hnb
-
-- **Reporter name:** Maciej Izak
-
-
-## Description:
-
-For simple attached code I have error: Global Generic template references static symtable
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24064
-- **Version:** 2.7.1",100
-91531143,2013-03-12 08:34:15.000,Can't build compiler from SVN r23794.,"
-Original Reporter info from Mantis: Cyrax
-
-- **Reporter name:**
-
-
-## Description:
-
-Excerpt from make log:
-\----
-Installation package fastcgi for target i386-win32 succeeded
-Skipped package fcl-async which has been disabled for target i386-win32
-Installing package fcl-base
-The installer encountered the following error:
-Failed to create directory ""I:\free_pascal_and_lazarus\free_pascal_and_lazarus\fpc\trunk\build\trunk_x32\units\i386-win32\fcl-base\\""
-make[3]: *** [distinstall] Error 1
-make[3]: Leaving directory `I:/free_pascal_and_lazarus/free_pascal_and_lazarus/fpc/trunk/trunk_svn_exported/packages'
-make[2]: *** [packages_distinstall] Error 2
-make[2]: Leaving directory `I:/free_pascal_and_lazarus/free_pascal_and_lazarus/fpc/trunk/trunk_svn_exported'
-make[1]: *** [installother] Error 2
-make[1]: Leaving directory `I:/free_pascal_and_lazarus/free_pascal_and_lazarus/fpc/trunk/trunk_svn_exported'
-make: *** [installall] Error 2
-\---
-
-Compiler is built by these make options:
-\---
-all
-install
-sourceinstall
-UPXPROG=echo
-OPT=""-gw2 -godwarfsets -gl -O- -OoNO -Xs-""
-COMPILER_OPTIONS=""-gw2 -godwarfsets -gl -O- -OoNO -Xs-""
-INSTALL_PREFIX=I:\free_pascal_and_lazarus\free_pascal_and_lazarus\fpc\trunk\build\trunk_x32
-REVSTR=23794
-IDE=1
-\---
-
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24030
-- **Fixed in version:** 3.0.0
-- **Fixed in revision:** 23804 (#9a26fc6994cec47124339a57804edff132a51542)",100
-91531119,2013-03-07 17:15:41.000,Enable Win64 SEH by default so exceptions in DLLs can properly be caught,"
-Original Reporter info from Mantis: BigChimp
-
-- **Reporter name:** Reinier Olislagers
-
-
-## Description:
-
-This patch enables Win64 SEH by default so errors in DLLs are correctly handled.
-
-Enabling this clears up a lot of problems and bug reports with errors generated in DLLs that are incorrectly handled by FPC.
-
-## Additional information:
-
-Compiles for me, including Lazarus. Hope I made the correct changes (did a grep for WIN64_SEH).
-
-Going to test with some Firebird bug reports
-
-## Mantis conversion info:
-
-- **Mantis ID:** 24012
-- **OS:** Vista
-- **Build:** 23705
-- **Platform:** Windows x64
-- **Version:** 2.7.1
-- **Fixed in version:** 3.0.0
-- **Fixed in revision:** 23732 (#2caa05ccd13b9b9ba59b1c458ede2d42c9274684)
-- **Monitored by:** » Vincent (Vincent Snijders), » @PascalDragon (Sven Barth)
-- **Target version:** 2.7.1",100
-91531108,2013-03-06 12:19:41.000,"Program crashes with message ""Thread creation error""","
-Original Reporter info from Mantis: jixian.yang
-
-- **Reporter name:** yang jixian
-
-
-## Description:
-
-Program exits at runtime while there is enough thread created.
-
-Run it with Lazarus IDE, the error message is ""Thread creation error"".
-
-On the computer the threads amount can not be greater than 117.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 23998
-- **OS:** windows7
-- **OS Build:** 6.1
-- **Platform:** win32
-- **Version:** 2.7.1",100
-91531082,2013-02-28 02:58:48.000,Access violation then call from DLL virtual method base abstract class realized in Delphi.,"
-Original Reporter info from Mantis: OldMan.pas
-
-- **Reporter name:** Nikola
-
-
-## Description:
-
-Dll writed in Lazarus. Main idea:
-```
- - application realize callback interface;
- - callback interface - base abstract class containing methods with stdcall;
- - in begin work application load library, create realized class and give him pointer (method InitLazDll);
- - after that application work with other exported function;
- - dll answer application over callback interface.
-```
-
-Appl. relized in delphi xe3. Source attach. If dll write in Delphi or C++ - AV absent
-
-## Steps to reproduce:
-
-1. Open project.
-2. Run
-3. Click button.
-
-## Additional information:
-
-Sorry, if Im mistaked
-
-## Mantis conversion info:
-
-- **Mantis ID:** 23969
-- **OS:** Windows 7 x64
-- **Platform:** Win32
-- **Version:** 2.6.0",100
-91531060,2013-02-24 21:09:49.000,[i386-android] - prt0.as : The system cannot find the file specified,"
-Original Reporter info from Mantis: takeda99
-
-- **Reporter name:** Takeda Matsuki
-
-
-## Description:
-
-Here chunk of output log (using make.exe v3.82):
-
-.................
-make -C utils cleanall
-make[5]: Entering directory `d:/freepascal271/compiler/utils'
-d:/freepascal271/binutils/i386-win32/rm.exe -f units/i386-win32/ppu.ppu units/i3
-86-win32/crc.ppu units/i386-win32/usubst.ppu
-d:/freepascal271/binutils/i386-win32/rm.exe -rf units
-d:/freepascal271/binutils/i386-win32/rm.exe -f *.o *.ppu *.rst *.s *.a *.dll *.p
-pl
-d:/freepascal271/binutils/i386-win32/rm.exe -rf *.sl
-d:/freepascal271/binutils/i386-win32/rm.exe -f fpcmade.* Package.fpc ppas.bat sc
-ript.res link.res
-d:/freepascal271/binutils/i386-win32/rm.exe -f *_ppas.bat
-make[5]: Leaving directory `d:/freepascal271/compiler/utils'
-d:/freepascal271/binutils/i386-win32/rm.exe -rf i386/units
-d:/freepascal271/binutils/i386-win32/rm.exe -f i386/*.o i386/*.ppu i386/*.rst i3
-86/*.s i386/*.a i386/*.dll i386/*.ppl
-d:/freepascal271/binutils/i386-win32/rm.exe -f i386/ppc386.exe i386/ppc68k.exe i
-386/ppcx64.exe i386/ppcppc.exe i386/ppcsparc.exe i386/ppcppc64.exe i386/ppcarm.e
-xe i386/ppcmips.exe i386/ppcmipsel.exe i386/ppcjvm.exe i386/ppcross386.exe
-d:/freepascal271/binutils/i386-win32/rm.exe -f ppcross386.exe
-d:/freepascal271/binutils/i386-win32/gmkdir.exe -p i386/units/i386-win32
-d:/freepascal271/compiler/ppc.exe -Ur -Xs -O2 -n -Fui386 -Fusystems -Fud:/freepa
-scal271/rtl/units/i386-win32 -Fii386 -FE. -FUi386/units/i386-win32 -dRELEASE
-\-di386 -dGDB -dBROWSERLOG -Fux86 -Sew pp.pas
-d:/freepascal271/binutils/i386-win32/mv.exe -f ./pp.exe ppcross386.exe
-make[4]: Leaving directory `d:/freepascal271/compiler'
-make[3]: Leaving directory `d:/freepascal271/compiler'
-make[2]: Leaving directory `d:/freepascal271'
-make -C utils/fpcm bootstrap FPC=d:/freepascal271/compiler/ppcross386.exe FPCFPM
-AKE=d:/freepascal271/compiler/ppc.exe RELEASE=1
-make[2]: Entering directory `d:/freepascal271/utils/fpcm'
-d:/freepascal271/binutils/i386-win32/gmkdir.exe -p d:/freepascal271/utils/fpcm/u
-nits/i386-win32
-d:/freepascal271/compiler/ppc.exe fpcmake.pp -Fud:/freepascal271/rtl/units/i386
-\-win32 -FUd:/freepascal271/utils/fpcm/units/i386-win32
-make[2]: Leaving directory `d:/freepascal271/utils/fpcm'
-make rtl_clean FPC=d:/freepascal271/compiler/ppcross386.exe
-make[2]: Entering directory `d:/freepascal271'
-make -C rtl clean
-make[3]: Entering directory `d:/freepascal271/rtl'
-d:/freepascal271/binutils/i386-win32/rm.exe -f fpcmade.i386-android Package.fpc
-ppas.bat script.res link.res
-d:/freepascal271/binutils/i386-win32/rm.exe -f *.s *_ppas.sh
-make -C android clean
-make[4]: Entering directory `d:/freepascal271/rtl/android'
-d:/freepascal271/binutils/i386-win32/rm.exe -f d:/freepascal271/rtl/units/i386-a
-ndroid/prt0.o d:/freepascal271/rtl/units/i386-android/dllprt0.o
-d:/freepascal271/binutils/i386-win32/rm.exe -f d:/freepascal271/rtl/units/i386-a
-ndroid/system.ppu d:/freepascal271/rtl/units/i386-android/cpu.ppu d:/freepascal2
-71/rtl/units/i386-android/mmx.ppu d:/freepascal271/rtl/units/i386-android/uuchar
-.ppu d:/freepascal271/rtl/units/i386-android/unixtype.ppu d:/freepascal271/rtl/u
-nits/i386-android/ctypes.ppu d:/freepascal271/rtl/units/i386-android/baseunix.pp
-u d:/freepascal271/rtl/units/i386-android/strings.ppu d:/freepascal271/rtl/units
-/i386-android/objpas.ppu d:/freepascal271/rtl/units/i386-android/macpas.ppu d:/f
-reepascal271/rtl/units/i386-android/iso7185.ppu d:/freepascal271/rtl/units/i386-
-android/syscall.ppu d:/freepascal271/rtl/units/i386-android/unixutil.ppu d:/free
-pascal271/rtl/units/i386-android/fpintres.ppu d:/freepascal271/rtl/units/i386-an
-droid/heaptrc.ppu d:/freepascal271/rtl/units/i386-android/lineinfo.ppu d:/freepa
-scal271/rtl/units/i386-android/lnfodwrf.ppu d:/freepascal271/rtl/units/i386-andr
-oid/termio.ppu d:/freepascal271/rtl/units/i386-android/unix.ppu d:/freepascal271
-/rtl/units/i386-android/linux.ppu d:/freepascal271/rtl/units/i386-android/initc.
-ppu d:/freepascal271/rtl/units/i386-android/cmem.ppu d:/freepascal271/rtl/units/
-i386-android/crt.ppu d:/freepascal271/rtl/units/i386-android/printer.ppu d:/free
-pascal271/rtl/units/i386-android/linuxvcs.ppu d:/freepascal271/rtl/units/i386-an
-droid/sysutils.ppu d:/freepascal271/rtl/units/i386-android/typinfo.ppu d:/freepa
-scal271/rtl/units/i386-android/math.ppu d:/freepascal271/rtl/units/i386-android/
-matrix.ppu d:/freepascal271/rtl/units/i386-android/varutils.ppu d:/freepascal271
-/rtl/units/i386-android/charset.ppu d:/freepascal271/rtl/units/i386-android/char
-acter.ppu d:/freepascal271/rtl/units/i386-android/ucomplex.ppu d:/freepascal271/
-rtl/units/i386-android/getopts.ppu d:/freepascal271/rtl/units/i386-android/error
-s.ppu d:/freepascal271/rtl/units/i386-android/sockets.ppu d:/freepascal271/rtl/u
-nits/i386-android/gpm.ppu d:/freepascal271/rtl/units/i386-android/serial.ppu d:/
-freepascal271/rtl/units/i386-android/terminfo.ppu d:/freepascal271/rtl/units/i38
-6-android/dl.ppu d:/freepascal271/rtl/units/i386-android/dynlibs.ppu d:/freepasc
-al271/rtl/units/i386-android/video.ppu d:/freepascal271/rtl/units/i386-android/m
-ouse.ppu d:/freepascal271/rtl/units/i386-android/keyboard.ppu d:/freepascal271/r
-tl/units/i386-android/variants.ppu d:/freepascal271/rtl/units/i386-android/types
-.ppu d:/freepascal271/rtl/units/i386-android/dateutils.ppu d:/freepascal271/rtl/
-units/i386-android/sysconst.ppu d:/freepascal271/rtl/units/i386-android/fmtbcd.p
-pu d:/freepascal271/rtl/units/i386-android/cthreads.ppu d:/freepascal271/rtl/uni
-ts/i386-android/classes.ppu d:/freepascal271/rtl/units/i386-android/fgl.ppu d:/f
-reepascal271/rtl/units/i386-android/convutils.ppu d:/freepascal271/rtl/units/i38
-6-android/stdconvs.ppu d:/freepascal271/rtl/units/i386-android/strutils.ppu d:/f
-reepascal271/rtl/units/i386-android/rtlconsts.ppu d:/freepascal271/rtl/units/i38
-6-android/dos.ppu d:/freepascal271/rtl/units/i386-android/objects.ppu d:/freepas
-cal271/rtl/units/i386-android/cwstring.ppu d:/freepascal271/rtl/units/i386-andro
-id/fpcylix.ppu d:/freepascal271/rtl/units/i386-android/clocale.ppu d:/freepascal
-271/rtl/units/i386-android/exeinfo.ppu d:/freepascal271/rtl/units/i386-android/s
-yslinux.ppu d:/freepascal271/rtl/units/i386-android/linux.ppu
-d:/freepascal271/binutils/i386-win32/rm.exe -f d:/freepascal271/rtl/units/i386-a
-ndroid/math.rst d:/freepascal271/rtl/units/i386-android/varutils.rst d:/freepasc
-al271/rtl/units/i386-android/typinfo.rst d:/freepascal271/rtl/units/i386-android
-/variants.rst d:/freepascal271/rtl/units/i386-android/sysconst.rst d:/freepascal
-271/rtl/units/i386-android/rtlconsts.rst d:/freepascal271/rtl/units/i386-android
-/stdconvs.rst d:/freepascal271/rtl/units/i386-android/strutils.rst
-d:/freepascal271/binutils/i386-win32/rm.exe -f fpcmade.i386-android Package.fpc
-ppas.bat script.res link.res
-d:/freepascal271/binutils/i386-win32/rm.exe -f *.s *_ppas.sh
-make[4]: Leaving directory `d:/freepascal271/rtl/android'
-make[3]: Leaving directory `d:/freepascal271/rtl'
-make[2]: Leaving directory `d:/freepascal271'
-make packages_clean FPC=d:/freepascal271/compiler/ppcross386.exe
-make[2]: Entering directory `d:/freepascal271'
-make -C packages clean
-make[3]: Entering directory `d:/freepascal271/packages'
-make -C fpmkunit clean_bootstrap
-make[4]: Entering directory `d:/freepascal271/packages/fpmkunit'
-d:/freepascal271/binutils/i386-win32/rm.exe -rf units_bs
-make[4]: Leaving directory `d:/freepascal271/packages/fpmkunit'
-make[3]: Leaving directory `d:/freepascal271/packages'
-make[2]: Leaving directory `d:/freepascal271'
-make rtl_all FPC=d:/freepascal271/compiler/ppcross386.exe FPCFPMAKE=d:/freepasca
-l271/compiler/ppc.exe RELEASE=1
-make[2]: Entering directory `d:/freepascal271'
-make -C rtl all
-make[3]: Entering directory `d:/freepascal271/rtl'
-make -C android all
-make[4]: Entering directory `d:/freepascal271/rtl/android'
-d:/freepascal271/binutils/i386-win32/gmkdir.exe -p d:/freepascal271/rtl/units/i3
-86-android
-D:\freepascal271\binutils\aw-bincross\aw-win32-i386-android-III/i686-linux-andro
-ideabi-as.exe --32 -o d:/freepascal271/rtl/units/i386-android/prt0.o i386/prt0.a
-s
-process_begin: CreateProcess(NULL, D:\freepascal271\binutils\aw-bincross\aw-win3
-2-i386-android-III/i686-linux-androideabi-as.exe --32 -o d:/freepascal271/rtl/un
-its/i386-android/prt0.o i386/prt0.as, ...) failed.
-make (e=2): The system cannot find the file specified.
-make[4]: *** [prt0.o] Error 2
-make[4]: Leaving directory `d:/freepascal271/rtl/android'
-make[3]: *** [android_all] Error 2
-make[3]: Leaving directory `d:/freepascal271/rtl'
-make[2]: *** [rtl_all] Error 2
-make[2]: Leaving directory `d:/freepascal271'
-make[1]: *** [build-stamp.i386-android] Error 2
-make[1]: Leaving directory `d:/freepascal271'
-make: *** [crossall] Error 2
-
-d:\freepascal271>
-
-## Steps to reproduce:
-
-I tried to build compiler for target i386-android (as mentioned on http://wiki.freepascal.org/Android , mean i386-android supported) from Windows using this script :
-\-------------------------------------------------
-
-cd d:\freepascal271
-
-set myroot=d:\freepascal271
-set myFPC=d:\freepascal271\fpc\2.7.1
-set mybinutils=d:\freepascal271\binutils
-set mycrossbin=D:\freepascal271\binutils\aw-bincross\aw-win32-i386-android-III
-
-set PATH=d:\freepascal271\binutils\i386-win32;D:\freepascal271\binutils\aw-bincross\aw-win32-i386-android-III;d:\freepascal271\fpc\2.7.1\bin\i386-win32;
-
-make clean crossall OS_TARGET=android CPU_TARGET=i386 crossinstall CROSSBINDIR=%mycrossbin% BINUTILSPREFIX=i686-linux-androideabi- INSTALL_PREFIX=%myFPC% DATA2INC=%myfpc%\utils\data2inc.exe
-
-\--------------------------------------------------
-
-Notes :
-1. I use FPC 2.6.0 as starting compiler and use NDK8d ToolChains (i686-linux-androideabi)
-
-2. I use Windows 7 Ultimate x64 SP1
-
-3. AMD A8 APU Processor with AHCI-System enabled.
-
-4. I already tried to use make.exe both v3.80 and v3.82, the result is same..
-
-
-Regards,
-Takeda
-
-## Mantis conversion info:
-
-- **Mantis ID:** 23949
-- **OS:** Windows 7 Ultimate 64bit SP1
-- **OS Build:** 6.1
-- **Build:** r23655
-- **Platform:** i386-android
-- **Version:** 2.7.1",200
-91531043,2013-02-21 17:08:54.000,"[arm-android] : "" No rule to make target `clocale.pp' ""","
-Original Reporter info from Mantis: takeda99
-
-- **Reporter name:** Takeda Matsuki
-
-
-## Description:
-
-Here chunk of output log (using make.exe v3.82):
-
-........
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Tandroid -Parm -XParm-linux-androi
-deabi- -Xr -Ur -Xs -O2 -n -Fi../inc -Fi../arm -Fi../unix -Fiarm -Fi../linux -Fi.
-./linux/arm -FDD:\freepascal271\binutils\aw-bincross\aw-win32-arm-android-III -F
-E. -FUd:/freepascal271/rtl/units/arm-android -darm -dRELEASE ../objpas/stdconvs
-.pp
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Tandroid -Parm -XParm-linux-androi
-deabi- -Xr -Ur -Xs -O2 -n -Fi../inc -Fi../arm -Fi../unix -Fiarm -Fi../linux -Fi.
-./linux/arm -FDD:\freepascal271\binutils\aw-bincross\aw-win32-arm-android-III -F
-E. -FUd:/freepascal271/rtl/units/arm-android -darm -dRELEASE ../objpas/strutils
-.pp
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Tandroid -Parm -XParm-linux-androi
-deabi- -Xr -Ur -Xs -O2 -n -Fi../inc -Fi../arm -Fi../unix -Fiarm -Fi../linux -Fi.
-./linux/arm -FDD:\freepascal271\binutils\aw-bincross\aw-win32-arm-android-III -F
-E. -FUd:/freepascal271/rtl/units/arm-android -darm -dRELEASE ../unix/dos.pp
-dos.pp(236,9) Warning: Symbol ""weekday"" is not portable
-dos.pp(592,6) Warning: Symbol ""UnixDateToDt"" is not portable
-dos.pp(816,4) Warning: Symbol ""UnixDateToDt"" is not portable
-dos.pp(832,16) Warning: Symbol ""DTToUnixDate"" is not portable
-dos.pp(889,6) Warning: Symbol ""FpGetEnv"" is deprecated
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Tandroid -Parm -XParm-linux-androi
-deabi- -Xr -Ur -Xs -O2 -n -Fi../inc -Fi../arm -Fi../unix -Fiarm -Fi../linux -Fi.
-./linux/arm -FDD:\freepascal271\binutils\aw-bincross\aw-win32-arm-android-III -F
-E. -FUd:/freepascal271/rtl/units/arm-android -darm -dRELEASE ../inc/objects.pp
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Tandroid -Parm -XParm-linux-androi
-deabi- -Xr -Ur -Xs -O2 -n -Fi../inc -Fi../arm -Fi../unix -Fiarm -Fi../linux -Fi.
-./linux/arm -FDD:\freepascal271\binutils\aw-bincross\aw-win32-arm-android-III -F
-E. -FUd:/freepascal271/rtl/units/arm-android -darm -dRELEASE cwstring.pp
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Tandroid -Parm -XParm-linux-androi
-deabi- -Xr -Ur -Xs -O2 -n -Fi../inc -Fi../arm -Fi../unix -Fiarm -Fi../linux -Fi.
-./linux/arm -FDD:\freepascal271\binutils\aw-bincross\aw-win32-arm-android-III -F
-E. -FUd:/freepascal271/rtl/units/arm-android -darm -dRELEASE ../linux/fpcylix.p
-p
-make[4]: *** No rule to make target `clocale.pp', needed by `clocale.ppu'. Stop
-.
-make[4]: Leaving directory `d:/freepascal271/rtl/android'
-make[3]: *** [android_all] Error 2
-make[3]: Leaving directory `d:/freepascal271/rtl'
-make[2]: *** [rtl_all] Error 2
-make[2]: Leaving directory `d:/freepascal271'
-make[1]: *** [build-stamp.arm-android] Error 2
-make[1]: Leaving directory `d:/freepascal271'
-make: *** [crossall] Error 2
-
-d:\freepascal271>
-
-## Steps to reproduce:
-
-I tried to build compiler for target arm-android from Windows using this script :
-
-\-------------------------------------------------
-
-cd d:\freepascal271
-
-set myroot=d:\freepascal271
-set myFPC=d:\freepascal271\fpc\2.7.1
-set mybinutils=d:\freepascal271\binutils
-set mycrossbin=D:\freepascal271\binutils\aw-bincross\aw-win32-arm-android-III
-
-set PATH=d:\freepascal271\binutils\i386-win32;D:\freepascal271\binutils\aw-bincross\aw-win32-arm-android-III;d:\freepascal271\fpc\2.7.1\bin\i386-win32;
-
-make clean crossall OS_TARGET=android CPU_TARGET=arm crossinstall CROSSBINDIR=%mycrossbin% BINUTILSPREFIX=arm-linux-androideabi- INSTALL_PREFIX=%myFPC% DATA2INC=%myfpc%\utils\data2inc.exe
-
-\--------------------------------------------------
-
-Notes :
-1. I use FPC 2.6.0 as starting compiler and use NDK8d ToolChains (arm-linux-androideabi)
-
-2. I use Windows 7 Ultimate x64 SP1
-
-3. AMD A8 APU Processor with AHCI-System enabled.
-
-4. I already tried to use make.exe both v3.80 and v3.82, the result is same (see the attachment).
-
-Regards,
-Takeda
-
-## Mantis conversion info:
-
-- **Mantis ID:** 23931
-- **OS:** Windows 7 Ultimate SP1 x64
-- **OS Build:** 6.1
-- **Build:** r23642
-- **Platform:** arm-android
-- **Version:** 2.7.1
-- **Fixed in version:** 3.0.0
-- **Fixed in revision:** 23646 (#f229d601ded8b6acca59bce624cadc62387e5c61)",200
-91531005,2013-02-17 17:54:56.000,"[arm-android] : ""No rule to make target `uuchar.ppu', needed by `fpc_units""","
-Original Reporter info from Mantis: takeda99
-
-- **Reporter name:** Takeda Matsuki
-
-
-## Description:
-
-Here chunk of output log :
-
-....
-make[5]: Leaving directory `d:/freepascal271/rtl/win32'
-make[4]: Leaving directory `d:/freepascal271/rtl'
-make[3]: Leaving directory `d:/freepascal271/compiler'
-make 'FPC=d:/freepascal271/compiler/ppc.exe' OS_TARGET=win32 CPU_TARGET=i386 PPC
-_TARGET=arm EXENAME=ppcrossarm.exe CROSSBINDIR= BINUTILSPREFIX= CROSSCYCLEBOOTST
-RAP=1 cycleclean compiler CYCLELEVEL=2
-make[3]: Entering directory `d:/freepascal271/compiler'
-d:/freepascal271/binutils/i386-win32/rm.exe -f pp.exe pp.o libppp.a libimppp.a
-d:/freepascal271/binutils/i386-win32/rm.exe -rf units
-d:/freepascal271/binutils/i386-win32/rm.exe -f *.o *.ppu *.rst *.s *.a *.dll *.p
-pl
-d:/freepascal271/binutils/i386-win32/rm.exe -rf *.sl
-d:/freepascal271/binutils/i386-win32/rm.exe -f fpcmade.* Package.fpc ppas.bat sc
-ript.res link.res
-d:/freepascal271/binutils/i386-win32/rm.exe -f *_ppas.bat
-make -C utils cleanall
-make[4]: Entering directory `d:/freepascal271/compiler/utils'
-d:/freepascal271/binutils/i386-win32/rm.exe -f fpc.exe ppufiles.exe ppudump.exe
-ppumove.exe fpcsubst.exe mkarmins.exe mkx86ins.exe fpc.o ppufiles.o ppudump.o pp
-umove.o fpcsubst.o mkarmins.o mkx86ins.o libpfpc.a libpppufiles.a libpppudump.a
-libpppumove.a libpfpcsubst.a libpmkarmins.a libpmkx86ins.a libimpfpc.a libimpppu
-files.a libimpppudump.a libimpppumove.a libimpfpcsubst.a libimpmkarmins.a libimp
-mkx86ins.a
-d:/freepascal271/binutils/i386-win32/rm.exe -f units/i386-win32/ppu.ppu units/i3
-86-win32/crc.ppu units/i386-win32/usubst.ppu
-d:/freepascal271/binutils/i386-win32/rm.exe -rf units
-d:/freepascal271/binutils/i386-win32/rm.exe -f *.o *.ppu *.rst *.s *.a *.dll *.p
-pl
-d:/freepascal271/binutils/i386-win32/rm.exe -rf *.sl
-d:/freepascal271/binutils/i386-win32/rm.exe -f fpcmade.* Package.fpc ppas.bat sc
-ript.res link.res
-d:/freepascal271/binutils/i386-win32/rm.exe -f *_ppas.bat
-make[4]: Leaving directory `d:/freepascal271/compiler/utils'
-d:/freepascal271/binutils/i386-win32/rm.exe -rf arm/units
-d:/freepascal271/binutils/i386-win32/rm.exe -f arm/*.o arm/*.ppu arm/*.rst arm/*
-.s arm/*.a arm/*.dll arm/*.ppl
-d:/freepascal271/binutils/i386-win32/rm.exe -f arm/ppc386.exe arm/ppc68k.exe arm
-/ppcx64.exe arm/ppcppc.exe arm/ppcsparc.exe arm/ppcppc64.exe arm/ppcarm.exe arm/
-ppcmips.exe arm/ppcmipsel.exe arm/ppcjvm.exe arm/ppcrossarm.exe
-d:/freepascal271/binutils/i386-win32/rm.exe -f ppcrossarm.exe
-d:/freepascal271/binutils/i386-win32/gmkdir.exe -p arm/units/i386-win32
-d:/freepascal271/compiler/ppc.exe -Ur -Xs -O2 -n -Fuarm -Fusystems -Fud:/freepas
-cal271/rtl/units/i386-win32 -Fiarm -FE. -FUarm/units/i386-win32 -dRELEASE -da
-rm -dGDB -dBROWSERLOG -Sew pp.pas
-d:/freepascal271/binutils/i386-win32/mv.exe -f ./pp.exe ppcrossarm.exe
-make[3]: Leaving directory `d:/freepascal271/compiler'
-make 'FPC=d:/freepascal271/compiler/ppcrossarm.exe' 'OPT= ' rtlclean rtl CYCLELE
-VEL=3
-make[3]: Entering directory `d:/freepascal271/compiler'
-make -C d:/freepascal271/rtl clean
-make[4]: Entering directory `d:/freepascal271/rtl'
-d:/freepascal271/binutils/i386-win32/rm.exe -f fpcmade.arm-android Package.fpc p
-pas.bat script.res link.res
-d:/freepascal271/binutils/i386-win32/rm.exe -f *.s *_ppas.sh
-make -C android clean
-make[5]: Entering directory `d:/freepascal271/rtl/android'
-d:/freepascal271/binutils/i386-win32/rm.exe -f d:/freepascal271/rtl/units/arm-an
-droid/prt0.o d:/freepascal271/rtl/units/arm-android/dllprt0.o
-d:/freepascal271/binutils/i386-win32/rm.exe -f d:/freepascal271/rtl/units/arm-an
-droid/system.ppu d:/freepascal271/rtl/units/arm-android/uuchar.ppu d:/freepascal
-271/rtl/units/arm-android/unixtype.ppu d:/freepascal271/rtl/units/arm-android/ct
-ypes.ppu d:/freepascal271/rtl/units/arm-android/baseunix.ppu d:/freepascal271/rt
-l/units/arm-android/strings.ppu d:/freepascal271/rtl/units/arm-android/objpas.pp
-u d:/freepascal271/rtl/units/arm-android/macpas.ppu d:/freepascal271/rtl/units/a
-rm-android/iso7185.ppu d:/freepascal271/rtl/units/arm-android/syscall.ppu d:/fre
-epascal271/rtl/units/arm-android/unixutil.ppu d:/freepascal271/rtl/units/arm-and
-roid/fpintres.ppu d:/freepascal271/rtl/units/arm-android/heaptrc.ppu d:/freepasc
-al271/rtl/units/arm-android/lineinfo.ppu d:/freepascal271/rtl/units/arm-android/
-lnfodwrf.ppu d:/freepascal271/rtl/units/arm-android/termio.ppu d:/freepascal271/
-rtl/units/arm-android/unix.ppu d:/freepascal271/rtl/units/arm-android/linux.ppu
-d:/freepascal271/rtl/units/arm-android/initc.ppu d:/freepascal271/rtl/units/arm-
-android/cmem.ppu d:/freepascal271/rtl/units/arm-android/crt.ppu d:/freepascal271
-/rtl/units/arm-android/printer.ppu d:/freepascal271/rtl/units/arm-android/linuxv
-cs.ppu d:/freepascal271/rtl/units/arm-android/sysutils.ppu d:/freepascal271/rtl/
-units/arm-android/typinfo.ppu d:/freepascal271/rtl/units/arm-android/math.ppu d:
-/freepascal271/rtl/units/arm-android/matrix.ppu d:/freepascal271/rtl/units/arm-a
-ndroid/varutils.ppu d:/freepascal271/rtl/units/arm-android/charset.ppu d:/freepa
-scal271/rtl/units/arm-android/character.ppu d:/freepascal271/rtl/units/arm-andro
-id/ucomplex.ppu d:/freepascal271/rtl/units/arm-android/getopts.ppu d:/freepascal
-271/rtl/units/arm-android/errors.ppu d:/freepascal271/rtl/units/arm-android/sock
-ets.ppu d:/freepascal271/rtl/units/arm-android/gpm.ppu d:/freepascal271/rtl/unit
-s/arm-android/serial.ppu d:/freepascal271/rtl/units/arm-android/terminfo.ppu d:/
-freepascal271/rtl/units/arm-android/dl.ppu d:/freepascal271/rtl/units/arm-androi
-d/dynlibs.ppu d:/freepascal271/rtl/units/arm-android/video.ppu d:/freepascal271/
-rtl/units/arm-android/mouse.ppu d:/freepascal271/rtl/units/arm-android/keyboard.
-ppu d:/freepascal271/rtl/units/arm-android/variants.ppu d:/freepascal271/rtl/uni
-ts/arm-android/types.ppu d:/freepascal271/rtl/units/arm-android/dateutils.ppu d:
-/freepascal271/rtl/units/arm-android/sysconst.ppu d:/freepascal271/rtl/units/arm
-\-android/fmtbcd.ppu d:/freepascal271/rtl/units/arm-android/cthreads.ppu d:/freep
-ascal271/rtl/units/arm-android/classes.ppu d:/freepascal271/rtl/units/arm-androi
-d/fgl.ppu d:/freepascal271/rtl/units/arm-android/convutils.ppu d:/freepascal271/
-rtl/units/arm-android/stdconvs.ppu d:/freepascal271/rtl/units/arm-android/struti
-ls.ppu d:/freepascal271/rtl/units/arm-android/rtlconsts.ppu d:/freepascal271/rtl
-/units/arm-android/dos.ppu d:/freepascal271/rtl/units/arm-android/objects.ppu d:
-/freepascal271/rtl/units/arm-android/cwstring.ppu d:/freepascal271/rtl/units/arm
-\-android/fpcylix.ppu d:/freepascal271/rtl/units/arm-android/clocale.ppu d:/freep
-ascal271/rtl/units/arm-android/exeinfo.ppu d:/freepascal271/rtl/units/arm-androi
-d/syslinux.ppu d:/freepascal271/rtl/units/arm-android/linux.ppu
-d:/freepascal271/binutils/i386-win32/rm.exe -f d:/freepascal271/rtl/units/arm-an
-droid/math.rst d:/freepascal271/rtl/units/arm-android/varutils.rst d:/freepascal
-271/rtl/units/arm-android/typinfo.rst d:/freepascal271/rtl/units/arm-android/var
-iants.rst d:/freepascal271/rtl/units/arm-android/sysconst.rst d:/freepascal271/r
-tl/units/arm-android/rtlconsts.rst d:/freepascal271/rtl/units/arm-android/stdcon
-vs.rst
-d:/freepascal271/binutils/i386-win32/rm.exe -f fpcmade.arm-android Package.fpc p
-pas.bat script.res link.res
-d:/freepascal271/binutils/i386-win32/rm.exe -f *.s *_ppas.sh
-make[5]: Leaving directory `d:/freepascal271/rtl/android'
-make[4]: Leaving directory `d:/freepascal271/rtl'
-make -C d:/freepascal271/rtl 'OPT= ' all
-make[4]: Entering directory `d:/freepascal271/rtl'
-make -C android all
-make[5]: Entering directory `d:/freepascal271/rtl/android'
-d:/freepascal271/binutils/i386-win32/gmkdir.exe -p d:/freepascal271/rtl/units/ar
-m-android
-D:\freepascal271\binutils\aw-bincross\aw-win32-arm-android-III/arm-linux-android
-eabi-as.exe -o d:/freepascal271/rtl/units/arm-android/prt0.o arm/prt0.as
-D:\freepascal271\binutils\aw-bincross\aw-win32-arm-android-III/arm-linux-android
-eabi-as.exe -o d:/freepascal271/rtl/units/arm-android/dllprt0.o arm/dllprt0.as
-d:/freepascal271/compiler/ppcrossarm.exe -Ur -Tandroid -Parm -XParm-linux-androi
-deabi- -Xr -Ur -Xs -O2 -n -Fi../inc -Fi../arm -Fi../unix -Fiarm -Fi../linux -Fi.
-./linux/arm -FDD:\freepascal271\binutils\aw-bincross\aw-win32-arm-android-III -F
-E. -FUd:/freepascal271/rtl/units/arm-android -darm -dRELEASE -Us -Sg ../linux/s
-ystem.pp
-text.inc(1793,14) Warning: Implicit string type conversion from ""AnsiString"" to
-""UnicodeString""
-text.inc(2017,44) Warning: Implicit string type conversion with potential data l
-oss from ""UnicodeString"" to ""AnsiString""
-make[5]: *** No rule to make target `uuchar.ppu', needed by `fpc_units'. Stop.
-make[5]: Leaving directory `d:/freepascal271/rtl/android'
-make[4]: *** [android_all] Error 2
-make[4]: Leaving directory `d:/freepascal271/rtl'
-make[3]: *** [rtl] Error 2
-make[3]: Leaving directory `d:/freepascal271/compiler'
-make[2]: *** [cycle] Error 2
-make[2]: Leaving directory `d:/freepascal271/compiler'
-make[1]: *** [compiler_cycle] Error 2
-make[1]: Leaving directory `d:/freepascal271'
-make: *** [build-stamp.arm-android] Error 2
-
-d:\freepascal271>
-
-## Steps to reproduce:
-
-I tried to build compiler for target arm-android from Windows using this script :
-
-\-------------------------------------------------
-
-cd d:\freepascal271
-
-set myroot=d:\freepascal271
-set myFPC=d:\freepascal271\fpc\2.7.1
-set mybinutils=d:\freepascal271\binutils
-set mycrossbin=D:\freepascal271\binutils\aw-bincross\aw-win32-arm-android-III
-
-set PATH=d:\freepascal271\binutils\i386-win32;D:\freepascal271\binutils\aw-bincross\aw-win32-arm-android-III;d:\freepascal271\fpc\2.7.1\bin\i386-win32;
-
-make clean all OS_TARGET=android CPU_TARGET=arm crossinstall CROSSBINDIR=%mycrossbin% BINUTILSPREFIX=arm-linux-androideabi- INSTALL_PREFIX=%myFPC% DATA2INC=%myfpc%\utils\data2inc.exe
-
-\--------------------------------------------------
-
-Notes :
-1. I use FPC 2.6.0 as starting compiler and use NDK8d ToolChains (arm-linux-androideabi)
-
-2. I use Windows 7 Ultimate x64 SP1
-
-3. AMD A8 APU Processor with AHCI-System enabled.
-
-Regards,
-Takeda
-
-## Mantis conversion info:
-
-- **Mantis ID:** 23911
-- **OS:** Windows 7 Ultimate x64 SP1
-- **OS Build:** 6.1
-- **Build:** 23625
-- **Platform:** arm-android
-- **Version:** 2.7.1
-- **Fixed in version:** 3.0.0
-- **Fixed in revision:** 23635 (#c27dcfd5b17677db1d8897e1f45d4c7ce0f8ea49)",200
-91531004,2013-02-17 17:45:11.000,cpu.ppu: No such file or directory,"
-Original Reporter info from Mantis: takeda99
-
-- **Reporter name:** Takeda Matsuki
-
-
-## Description:
-
-Here chunk of output log :
-
-[ 90%] Compiled package tcl
-[ 90%] Skipped package univint which has been disabled for target x86_64-linux
-[ 91%] Skipped package unixutil which has been disabled for target x86_64-linux
-Start compiling package unzip for target x86_64-linux.
-```
- Compiling unzip\BuildUnit_unzip.pp
- Compiling .\unzip\src\ziptypes.pp
- Compiling .\unzip\src\unzip51g.pp
-```
-[ 92%] Compiled package unzip
-Start compiling package users for target x86_64-linux.
-```
- Compiling users\BuildUnit_users.pp
- Compiling .\users\src\crypth.pp
- Compiling .\users\src\grp.pp
- Compiling .\users\src\pwd.pp
- Compiling .\users\src\shadow.pp
- Compiling .\users\src\users.pp
-```
-[ 93%] Compiled package users
-Start compiling package utmp for target x86_64-linux.
-```
- Compiling utmp\BuildUnit_utmp.pp
- Compiling .\utmp\src\utmp.pp
-```
-[ 94%] Compiled package utmp
-Start compiling package uuid for target x86_64-linux.
-```
- Compiling uuid\BuildUnit_uuid.pp
- Compiling .\uuid\src\libuuid.pp
- Compiling .\uuid\src\macuuid.pp
-```
-[ 95%] Compiled package uuid
-[ 96%] Skipped package winceunits which has been disabled for target x86_64-linu
-x
-[ 97%] Skipped package winunits-base which has been disabled for target x86_64-l
-inux
-[ 97%] Skipped package winunits-jedi which has been disabled for target x86_64-l
-inux
-Start compiling package xforms for target x86_64-linux.
-```
- Compiling xforms\BuildUnit_xforms.pp
- Compiling .\xforms\src\xforms.pp
-```
-[ 98%] Compiled package xforms
-Start compiling package zorba for target x86_64-linux.
-```
- Compiling zorba\BuildUnit_zorba.pp
- Compiling .\zorba\src\xqc.pas
- Compiling .\zorba\src\zorbadyn.pas
- Compiling .\zorba\src\zorba.pas
-```
-[ 99%] Compiled package zorba
-make[2]: Leaving directory `d:/freepascal271/packages'
-make[1]: Leaving directory `d:/freepascal271'
-echo Build > build-stamp.x86_64-linux
-echo Build > base.build-stamp.x86_64-linux
-make install CROSSINSTALL=1
-make[1]: Entering directory `d:/freepascal271'
-make installbase FPC=d:/freepascal271/compiler/ppcrossx64.exe ZIPDESTDIR=d:/free
-pascal271 FPCMAKE=d:/freepascal271/fpc/2.7.1/bin/i386-win32/fpcmake.exe
-make[2]: Entering directory `d:/freepascal271'
-d:/freepascal271/binutils/i386-win32/ginstall.exe -m 755 -d d:\freepascal271\fpc
-\\2.7.1
-d:/freepascal271/binutils/i386-win32/ginstall.exe -m 755 -d d:\freepascal271\fpc
-\\2.7.1/bin/i386-win32
-make compiler_install FPC=d:/freepascal271/compiler/ppcrossx64.exe ZIPDESTDIR=d:
-/freepascal271 FPCMAKE=d:/freepascal271/fpc/2.7.1/bin/i386-win32/fpcmake.exe
-make[3]: Entering directory `d:/freepascal271'
-make -C compiler install
-make[4]: Entering directory `d:/freepascal271/compiler'
-make -C utils install
-make[5]: Entering directory `d:/freepascal271/compiler/utils'
-make[5]: Leaving directory `d:/freepascal271/compiler/utils'
-d:/freepascal271/binutils/i386-win32/ginstall.exe -m 755 -d d:\freepascal271\fpc
-\\2.7.1/bin/i386-win32
-d:/freepascal271/binutils/i386-win32/cp.exe -fp ppcrossx64.exe d:\freepascal271\
-fpc\2.7.1/bin/i386-win32/ppcrossx64.exe
-make[4]: Leaving directory `d:/freepascal271/compiler'
-make[3]: Leaving directory `d:/freepascal271'
-make rtl_install FPC=d:/freepascal271/compiler/ppcrossx64.exe ZIPDESTDIR=d:/free
-pascal271 FPCMAKE=d:/freepascal271/fpc/2.7.1/bin/i386-win32/fpcmake.exe
-make[3]: Entering directory `d:/freepascal271'
-make -C rtl install
-make[4]: Entering directory `d:/freepascal271/rtl'
-make -C linux all
-make[5]: Entering directory `d:/freepascal271/rtl/linux'
-make[5]: Leaving directory `d:/freepascal271/rtl/linux'
-d:/freepascal271/fpc/2.7.1/bin/i386-win32/fpcmake.exe -p -Tx86_64-linux Makefile
-.fpc
-Processing Makefile.fpc
- Writing Package.fpc
-d:/freepascal271/binutils/i386-win32/ginstall.exe -m 755 -d d:\freepascal271\fpc
-\\2.7.1/units/x86_64-linux/rtl
-d:/freepascal271/binutils/i386-win32/cp.exe -fp Package.fpc d:\freepascal271\fpc
-\\2.7.1/units/x86_64-linux/rtl
-make -C linux install
-make[5]: Entering directory `d:/freepascal271/rtl/linux'
-d:/freepascal271/binutils/i386-win32/ginstall.exe -m 755 -d d:\freepascal271\fpc
-\\2.7.1/units/x86_64-linux/rtl
-d:/freepascal271/binutils/i386-win32/cp.exe -fp d:/freepascal271/rtl/units/x86_6
-4-linux/prt0.o d:/freepascal271/rtl/units/x86_64-linux/dllprt0.o d:/freepascal27
-1/rtl/units/x86_64-linux/cprt0.o d:/freepascal271/rtl/units/x86_64-linux/gprt0.o
- d:\freepascal271\fpc\2.7.1/units/x86_64-linux/rtl
-d:/freepascal271/binutils/i386-win32/ginstall.exe -m 755 -d d:\freepascal271\fpc
-\\2.7.1/units/x86_64-linux/rtl
-d:/freepascal271/binutils/i386-win32/cp.exe -fp d:/freepascal271/rtl/units/x86_6
-4-linux/system.ppu d:/freepascal271/rtl/units/x86_64-linux/uuchar.ppu d:/freepas
-cal271/rtl/units/x86_64-linux/unixtype.ppu d:/freepascal271/rtl/units/x86_64-lin
-ux/ctypes.ppu d:/freepascal271/rtl/units/x86_64-linux/baseunix.ppu d:/freepascal
-271/rtl/units/x86_64-linux/strings.ppu d:/freepascal271/rtl/units/x86_64-linux/o
-bjpas.ppu d:/freepascal271/rtl/units/x86_64-linux/macpas.ppu d:/freepascal271/rt
-l/units/x86_64-linux/iso7185.ppu d:/freepascal271/rtl/units/x86_64-linux/syscall
-.ppu d:/freepascal271/rtl/units/x86_64-linux/unixutil.ppu d:/freepascal271/rtl/u
-nits/x86_64-linux/fpintres.ppu d:/freepascal271/rtl/units/x86_64-linux/heaptrc.p
-pu d:/freepascal271/rtl/units/x86_64-linux/lineinfo.ppu d:/freepascal271/rtl/uni
-ts/x86_64-linux/lnfodwrf.ppu d:/freepascal271/rtl/units/x86_64-linux/termio.ppu
-d:/freepascal271/rtl/units/x86_64-linux/unix.ppu d:/freepascal271/rtl/units/x86_
-64-linux/linux.ppu d:/freepascal271/rtl/units/x86_64-linux/initc.ppu d:/freepasc
-al271/rtl/units/x86_64-linux/cmem.ppu d:/freepascal271/rtl/units/x86_64-linux/x8
-6.ppu d:/freepascal271/rtl/units/x86_64-linux/ports.ppu d:/freepascal271/rtl/uni
-ts/x86_64-linux/cpu.ppu d:/freepascal271/rtl/units/x86_64-linux/crt.ppu d:/freep
-ascal271/rtl/units/x86_64-linux/printer.ppu d:/freepascal271/rtl/units/x86_64-li
-nux/linuxvcs.ppu d:/freepascal271/rtl/units/x86_64-linux/sysutils.ppu d:/freepas
-cal271/rtl/units/x86_64-linux/typinfo.ppu d:/freepascal271/rtl/units/x86_64-linu
-x/math.ppu d:/freepascal271/rtl/units/x86_64-linux/matrix.ppu d:/freepascal271/r
-tl/units/x86_64-linux/varutils.ppu d:/freepascal271/rtl/units/x86_64-linux/chars
-et.ppu d:/freepascal271/rtl/units/x86_64-linux/character.ppu d:/freepascal271/rt
-l/units/x86_64-linux/ucomplex.ppu d:/freepascal271/rtl/units/x86_64-linux/getopt
-s.ppu d:/freepascal271/rtl/units/x86_64-linux/errors.ppu d:/freepascal271/rtl/un
-its/x86_64-linux/sockets.ppu d:/freepascal271/rtl/units/x86_64-linux/gpm.ppu d:/
-freepascal271/rtl/units/x86_64-linux/ipc.ppu d:/freepascal271/rtl/units/x86_64-l
-inux/serial.ppu d:/freepascal271/rtl/units/x86_64-linux/terminfo.ppu d:/freepasc
-al271/rtl/units/x86_64-linux/dl.ppu d:/freepascal271/rtl/units/x86_64-linux/dynl
-ibs.ppu d:/freepascal271/rtl/units/x86_64-linux/video.ppu d:/freepascal271/rtl/u
-nits/x86_64-linux/mouse.ppu d:/freepascal271/rtl/units/x86_64-linux/keyboard.ppu
- d:/freepascal271/rtl/units/x86_64-linux/variants.ppu d:/freepascal271/rtl/units
-/x86_64-linux/types.ppu d:/freepascal271/rtl/units/x86_64-linux/dateutils.ppu d:
-/freepascal271/rtl/units/x86_64-linux/sysconst.ppu d:/freepascal271/rtl/units/x8
-6_64-linux/fmtbcd.ppu d:/freepascal271/rtl/units/x86_64-linux/cthreads.ppu d:/fr
-eepascal271/rtl/units/x86_64-linux/classes.ppu d:/freepascal271/rtl/units/x86_64
-\-linux/fgl.ppu d:/freepascal271/rtl/units/x86_64-linux/convutils.ppu d:/freepasc
-al271/rtl/units/x86_64-linux/stdconvs.ppu d:/freepascal271/rtl/units/x86_64-linu
-x/strutils.ppu d:/freepascal271/rtl/units/x86_64-linux/rtlconsts.ppu d:/freepasc
-al271/rtl/units/x86_64-linux/dos.ppu d:/freepascal271/rtl/units/x86_64-linux/obj
-ects.ppu d:/freepascal271/rtl/units/x86_64-linux/cwstring.ppu d:/freepascal271/r
-tl/units/x86_64-linux/fpcylix.ppu d:/freepascal271/rtl/units/x86_64-linux/clocal
-e.ppu d:/freepascal271/rtl/units/x86_64-linux/exeinfo.ppu d:\freepascal271\fpc\2
-.7.1/units/x86_64-linux/rtl
-cp.exe: d:/freepascal271/rtl/units/x86_64-linux/cpu.ppu: No such file or directo
-ry
-make[5]: *** [fpc_install] Error 1
-make[5]: Leaving directory `d:/freepascal271/rtl/linux'
-make[4]: *** [linux_install] Error 2
-make[4]: Leaving directory `d:/freepascal271/rtl'
-make[3]: *** [rtl_install] Error 2
-make[3]: Leaving directory `d:/freepascal271'
-make[2]: *** [installbase] Error 2
-make[2]: Leaving directory `d:/freepascal271'
-make[1]: *** [installall] Error 2
-make[1]: Leaving directory `d:/freepascal271'
-make: *** [crossinstall] Error 2
-
-## Steps to reproduce:
-
-I tried to build compiler for target x86_64-linux from Windows using this script :
-
-\-------------------------------------------------
-
-cd d:\freepascal271
-
-set myroot=d:\freepascal271
-set myFPC=d:\freepascal271\fpc\2.7.1
-set mybinutils=d:\freepascal271\binutils
-set mycrossbin=D:\freepascal271\binutils\aw-bincross\aw-win32-x86_64-Linux
-
-set PATH=d:\freepascal271\binutils\i386-win32;D:\freepascal271\binutils\aw-bincross\aw-win32-x86_64-Linux;d:\freepascal271\fpc\2.7.1\bin\i386-win32;
-
-make clean all OS_TARGET=linux CPU_TARGET=x86_64 crossinstall CROSSBINDIR=%mycrossbin% BINUTILSPREFIX=x86_64-linux- INSTALL_PREFIX=%myFPC% DATA2INC=%myFPC%\utils\data2inc.exe
-
-\----------------------------------------------------------
-
-Notes :
-1. I use FPC 2.6.0 as starting compiler and use fpcbuild from ( http://svn.freepascal.org/cgi-bin/viewvc.cgi/binaries/i386-win32/?root=fpcbuild )
-
-2. I use Windows 7 Ultimate x64 SP1
-
-3. AMD A8 APU Processor with AHCI-System enabled.
-
-
-Regards,
-Takeda
-
-## Mantis conversion info:
-
-- **Mantis ID:** 23910
-- **OS:** Windows 7 Ultimate x64 SP1
-- **OS Build:** 6.1
-- **Build:** 23625
-- **Platform:** x86_64
-- **Version:** 2.7.1
-- **Fixed in version:** 3.0.0
-- **Fixed in revision:** 23629 (#776f4cc18fc1d25aa427498daa470dd92531520c)",200
-91531001,2013-02-17 09:06:46.000,uuchar.ppu: No such file or direct ory,"
-Original Reporter info from Mantis: takeda99
-
-- **Reporter name:** Takeda Matsuki
-
-
-## Description:
-
-Here chunk of output log :
-
-make -C linux install
-make[5]: Entering directory `d:/freepascal271/rtl/linux'
-d:/freepascal271/binutils/i386-win32/ginstall.exe -m 755 -d d:\freepascal271\fpc
-\\2.7.1/units/i386-linux/rtl
-d:/freepascal271/binutils/i386-win32/cp.exe -fp d:/freepascal271/rtl/units/i386-
-linux/system.ppu d:/freepascal271/rtl/units/i386-linux/si_prc.ppu d:/freepascal2
-71/rtl/units/i386-linux/si_c21g.ppu d:/freepascal271/rtl/units/i386-linux/si_c21
-.ppu d:/freepascal271/rtl/units/i386-linux/si_c.ppu d:/freepascal271/rtl/units/i
-386-linux/si_dll.ppu d:/freepascal271/rtl/units/i386-linux/si_uc.ppu d:/freepasc
-al271/rtl/units/i386-linux/uuchar.ppu d:/freepascal271/rtl/units/i386-linux/unix
-type.ppu d:/freepascal271/rtl/units/i386-linux/ctypes.ppu d:/freepascal271/rtl/u
-nits/i386-linux/baseunix.ppu d:/freepascal271/rtl/units/i386-linux/strings.ppu d
-:/freepascal271/rtl/units/i386-linux/objpas.ppu d:/freepascal271/rtl/units/i386-
-linux/macpas.ppu d:/freepascal271/rtl/units/i386-linux/iso7185.ppu d:/freepascal
-271/rtl/units/i386-linux/syscall.ppu d:/freepascal271/rtl/units/i386-linux/unixu
-til.ppu d:/freepascal271/rtl/units/i386-linux/fpintres.ppu d:/freepascal271/rtl/
-units/i386-linux/heaptrc.ppu d:/freepascal271/rtl/units/i386-linux/lineinfo.ppu
-d:/freepascal271/rtl/units/i386-linux/lnfodwrf.ppu d:/freepascal271/rtl/units/i3
-86-linux/termio.ppu d:/freepascal271/rtl/units/i386-linux/unix.ppu d:/freepascal
-271/rtl/units/i386-linux/linux.ppu d:/freepascal271/rtl/units/i386-linux/initc.p
-pu d:/freepascal271/rtl/units/i386-linux/cmem.ppu d:/freepascal271/rtl/units/i38
-6-linux/x86.ppu d:/freepascal271/rtl/units/i386-linux/ports.ppu d:/freepascal271
-/rtl/units/i386-linux/cpu.ppu d:/freepascal271/rtl/units/i386-linux/mmx.ppu d:/f
-reepascal271/rtl/units/i386-linux/crt.ppu d:/freepascal271/rtl/units/i386-linux/
-printer.ppu d:/freepascal271/rtl/units/i386-linux/linuxvcs.ppu d:/freepascal271/
-rtl/units/i386-linux/sysutils.ppu d:/freepascal271/rtl/units/i386-linux/typinfo.
-ppu d:/freepascal271/rtl/units/i386-linux/math.ppu d:/freepascal271/rtl/units/i3
-86-linux/matrix.ppu d:/freepascal271/rtl/units/i386-linux/varutils.ppu d:/freepa
-scal271/rtl/units/i386-linux/charset.ppu d:/freepascal271/rtl/units/i386-linux/c
-haracter.ppu d:/freepascal271/rtl/units/i386-linux/ucomplex.ppu d:/freepascal271
-/rtl/units/i386-linux/getopts.ppu d:/freepascal271/rtl/units/i386-linux/errors.p
-pu d:/freepascal271/rtl/units/i386-linux/sockets.ppu d:/freepascal271/rtl/units/
-i386-linux/gpm.ppu d:/freepascal271/rtl/units/i386-linux/ipc.ppu d:/freepascal27
-1/rtl/units/i386-linux/serial.ppu d:/freepascal271/rtl/units/i386-linux/terminfo
-.ppu d:/freepascal271/rtl/units/i386-linux/dl.ppu d:/freepascal271/rtl/units/i38
-6-linux/dynlibs.ppu d:/freepascal271/rtl/units/i386-linux/video.ppu d:/freepasca
-l271/rtl/units/i386-linux/mouse.ppu d:/freepascal271/rtl/units/i386-linux/keyboa
-rd.ppu d:/freepascal271/rtl/units/i386-linux/variants.ppu d:/freepascal271/rtl/u
-nits/i386-linux/types.ppu d:/freepascal271/rtl/units/i386-linux/dateutils.ppu d:
-/freepascal271/rtl/units/i386-linux/sysconst.ppu d:/freepascal271/rtl/units/i386
-\-linux/fmtbcd.ppu d:/freepascal271/rtl/units/i386-linux/cthreads.ppu d:/freepasc
-al271/rtl/units/i386-linux/classes.ppu d:/freepascal271/rtl/units/i386-linux/fgl
-.ppu d:/freepascal271/rtl/units/i386-linux/convutils.ppu d:/freepascal271/rtl/un
-its/i386-linux/stdconvs.ppu d:/freepascal271/rtl/units/i386-linux/strutils.ppu d
-:/freepascal271/rtl/units/i386-linux/rtlconsts.ppu d:/freepascal271/rtl/units/i3
-86-linux/dos.ppu d:/freepascal271/rtl/units/i386-linux/objects.ppu d:/freepascal
-271/rtl/units/i386-linux/cwstring.ppu d:/freepascal271/rtl/units/i386-linux/fpcy
-lix.ppu d:/freepascal271/rtl/units/i386-linux/clocale.ppu d:/freepascal271/rtl/u
-nits/i386-linux/exeinfo.ppu d:\freepascal271\fpc\2.7.1/units/i386-linux/rtl
-cp.exe: d:/freepascal271/rtl/units/i386-linux/uuchar.ppu: No such file or direct
-ory
-make[5]: *** [fpc_install] Error 1
-make[5]: Leaving directory `d:/freepascal271/rtl/linux'
-make[4]: *** [linux_install] Error 2
-make[4]: Leaving directory `d:/freepascal271/rtl'
-make[3]: *** [rtl_install] Error 2
-make[3]: Leaving directory `d:/freepascal271'
-make[2]: *** [installbase] Error 2
-make[2]: Leaving directory `d:/freepascal271'
-make[1]: *** [installall] Error 2
-make[1]: Leaving directory `d:/freepascal271'
-make: *** [crossinstall] Error 2
-
-## Steps to reproduce:
-
-I tried to build compiler for target i386-linux from Windows using this script :
-
-\----------------------------------------------------------
-
-cd d:\freepascal271
-
-set myroot=d:\freepascal271
-set myFPC=d:\freepascal271\fpc\2.7.1
-set mybinutils=d:\freepascal271\binutils
-set mycrossbin=D:\freepascal271\binutils\aw-bincross\aw-win32-i386-Linux
-
-set PATH=d:\freepascal271\binutils\i386-win32;D:\freepascal271\binutils\aw-bincross\aw-win32-i386-Linux;d:\freepascal271\fpc\2.7.1\bin\i386-win32;
-
-make OS_TARGET=linux CPU_TARGET=i386 clean all crossinstall CROSSBINDIR=%mycrossbin% BINUTILSPREFIX=i386-linux- INSTALL_PREFIX=%myFPC% DATA2INC=%myroot%\utils\data2inc.exe
-
-\--------------------------------------------------------------------------------
-
-Notes :
-1. I use FPC 2.6.0 as starting compiler and use fpcbuild from ( http://svn.freepascal.org/cgi-bin/viewvc.cgi/binaries/i386-win32/?root=fpcbuild )
-
-2. I use Windows 7 Ultimate x64 SP1
-
-3. AMD A8 APU Processor with AHCI-System enabled.
-
-4. I use FPC 2.7.1 svn 23624.
-
-Regards,
-Takeda
-
-## Mantis conversion info:
-
-- **Mantis ID:** 23907
-- **OS:** Windows 7 Ultimate SP1 x64
-- **OS Build:** 6.1
-- **Build:** 23624
-- **Platform:** Windows
-- **Version:** 2.7.1
-- **Fixed in version:** 3.0.0
-- **Fixed in revision:** 23625 (#2a99cef7c31cedcd77a0c684a2f7ad5629f14227)",200
-91530981,2013-02-15 18:40:47.000,Memory leak caused by for in do loop,"
-Original Reporter info from Mantis: Necem
-
-- **Reporter name:**
-
-
-## Description:
-
-The enumerator will only be created but never be freed. Naturally every application with for in do leaks memory.
-
-## Steps to reproduce:
-
-type TStringList = specialize TFPGList&LtPos;String>;
-
-``` pascal
-var l : TStringList;
- a : String;
-begin
- l := TStringList.create;
- l.Add('test');
- for a in l do
- ;
-end;
-```
-
-and here we produced a memleak.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 23892
-- **Version:** 2.7.1
-- **Monitored by:** » Vincent (Vincent Snijders)",100
-91530902,2013-01-27 18:41:16.000,Can't build the compiler for WinCE as Target,"
-Original Reporter info from Mantis: takeda99
-
-- **Reporter name:** Takeda Matsuki
-
-
-## Description:
-
-I use usual method, like describe on Wiki related about ""How to build the compiler.."".
-
-Recently, I was tried to build the compiler but unfortunately it was failed (see attachment : FPC Failed.png).
-
-I use, FPC 2.6.0 as bootstrap. Windows 7 x64 Ultimate.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 23765
-- **Version:** 2.7.1
-- **Fixed in version:** 3.0.0
-- **Fixed in revision:** 23528 (#bb00325d85dbb7a323389ab61921cdbb90d557e2)",100
-91521846,2010-07-11 12:35:34.000,fcl-xml won't load thtmldocument due to XML version?,"
-Original Reporter info from Mantis: marco @marcoonthegit
-
-- **Reporter name:** Marco van de Voort
-
-
-## Description:
-
-I get exceptions in TDomDocument.createelement using dom_html.readhtmlfile, but only on some files.
-
-I tried printing the tag in createelement, but it says it is ""link"", which is also available in several other files that _are_ read.
-
-I saw a lot of changes in this XML versioning stuff in r15443.
-
-I think I scanned these documents before, and that they worked at the time, however I'm not 100% sure.
-
-Is there a more general way to avoid this whole problem?
-E.g. is there a way to enable some form of quirk mode, to avoid THTMLDocument to throw exceptions on every unknown tag?
-
-The whole html processing is very useful to me. (this particular example is from attempts to improve html scanning for files not in the project in package CHM), but within the FPC project it is also used to straighten out the online html docs.
-
-## Steps to reproduce:
-
-download archive, compile the .pp and run.
-
-The last file (settingup.htm) throws the exception, the others seem to pass.
-
-This is strange, since these files all seem to be generated by robohelp and have a very similar header. Therefore I doubt my conclusion that it is the LINK tag somewhat.
-
-(the robohelp origin is which why they have funky &LtPos;object tags, these trigger certain CHM only functionality)
-
-## Additional information:
-
-(note the ""due to tag &LtPos;x>"" addition is a quick hack from me to see which element causes the problem)
-
-An unhandled exception occurred at $004252B2 :
-EDOMError : EDOMError in DOMDocument.CreateElement due to tag link
-
-```
- $004252B2 TDOMDOCUMENT__CREATEELEMENT, line 2282 of src/dom.pp
- $0042811A THTMLTODOMCONVERTER__READERSTARTELEMENT, line 539 of src/sax_html.pp
- $0042974E TSAXREADER__DOSTARTELEMENT, line 770 of src/sax.pp
- $00427CD2 THTMLREADER__ENTERNEWSCANNERCONTEXT, line 449 of src/sax_html.pp
- $0042717D THTMLREADER__PARSE, line 272 of src/sax_html.pp
- $0042937C TSAXREADER__PARSESTREAM, line 652 of src/sax.pp
- $0042858D READHTMLFILE, line 656 of src/sax_html.pp
- $004284E1 READHTMLFILE, line 640 of src/sax_html.pp
- $0040189A main, line 88 of scannertest.pp
-```
-
-
-## Mantis conversion info:
-
-- **Mantis ID:** 16906
-- **Fixed in version:** 2.4.4
-- **Fixed in revision:** 16396 (#4761ab00522806d505847643baa05d000834b30a)",100
-91521039,2010-04-27 22:10:50.000,assign a packed record (as result of a function) to variable result in a memory overflow,"
-Original Reporter info from Mantis: ivo_steinmann@gmx.net
-
-- **Reporter name:** Ivo Steinmann
-
-
-## Description:
-
-``` pascal
-type
- TType = packed record
- a: byte;
- b: byte;
- c: longword;
- end;
-
-function make: TType; assembler;
-asm
- movq $-1, %rax
-end;
-
-var
- id: ttype
-begin
- id := make();
-end.
-```
-
-results in this asm code:
-
-```
- call P$TEST_MAKE$$TTYPE
- movq %rax,U_P$TEST_ID
-```
-
-
-so 8 instead of 6 bytes are written!!
-
-(took me hours to find the reason why my application crashed)
-
-
-
-
-## Steps to reproduce:
-
-see attached testcase
-
-## Mantis conversion info:
-
-- **Mantis ID:** 16357
-- **OS:** Linux Gentoo x86_64
-- **OS Build:** latest
-- **Build:** 15194
-- **Platform:** AMD64 Phenom X4
-- **Version:** 2.5.1
-- **Fixed in version:** 2.6.0
-- **Fixed in revision:** 15350 (#283018a3bf2d89eca3f9146dc24f8f9a7e06e825)
-- **Target version:** 2.5.1",100
-91517836,2009-10-31 21:15:46.000,Compiling shared library without -fPIC causes a crash,"
-Original Reporter info from Mantis: cobines
-
-- **Reporter name:**
-
-
-## Description:
-
-I'm not sure it makes sense building shared lib without -fPIC, anyway the compiler shouldn't crash, but rather give a message.
-
-My system is i386-linux Debian/Unstable.
-FPC is 2.5.1 rev. 13987.
-
-Attached sample file causing a crash.
-
-$ fpc example.lpr
-Free Pascal Compiler version 2.5.1 [2009/10/31] for i386
-Copyright (c) 1993-2009 by Florian Klaempfl
-Target OS: Linux for i386
-Compiling example.lpr
-Fatal: Compilation aborted
-An unhandled exception occurred at $081C5F24 :
-```
-EAccessViolation : Access violation
- $081C5F24 TEXPORTLIBUNIX__GENERATELIB, line 168 of expunix.pas
- $08170E31 PROC_PROGRAM, line 2193 of pmodules.pas
- $0815B024 COMPILE, line 402 of parser.pas
- $0806642C COMPILE, line 246 of compiler.pas
- $08048256 main, line 223 of pp.pas
-```
-
-
-[with -fPIC - no crash]
-$ fpc -fPIC example.lpr
-Free Pascal Compiler version 2.5.1 [2009/10/31] for i386
-Copyright (c) 1993-2009 by Florian Klaempfl
-Target OS: Linux for i386
-Compiling example.lpr
-Linking libexample.so
-/usr/bin/ld: warning: link.res contains output sections; did you forget -T?
-13 lines compiled, 0.2 sec
-
-
-[Cross compiling to x86_64 - no crash]
-$ fpc -Px86_64 example.lpr
-Free Pascal Compiler version 2.5.1 [2009/10/31] for x86_64
-Copyright (c) 1993-2009 by Florian Klaempfl
-Target OS: Linux for x86-64
-Compiling example.lpr
-Linking libexample.so
-/usr/bin/ld: warning: link.res contains output sections; did you forget -T?
-13 lines compiled, 0.2 sec
-
-## Mantis conversion info:
-
-- **Mantis ID:** 14959
-- **Version:** 2.5.1
-- **Fixed in version:** 2.6.0
-- **Fixed in revision:** 14181 (#122e5714d87cb2508e5af6dbec5fac8385f52067)",100
-91516877,2009-08-25 20:22:47.000,SQLDb Patch: Fix assignment to connection's params property when editing using lazarus strings editor.,"
-Original Reporter info from Mantis: Jesus @jramx
-
-- **Reporter name:** Jesus Reyes
-
-
-## Description:
-
-The lazarus strings editor copies the memo's strings property to connection's params property because the params property do not have a setter that copy the property content instead. The attached patch adds a setter method to Params property and does params.assign(value) instead of the current result of just params:=value
-
-Please merge to fixes.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 14438
-- **Build:** 13596
-- **Version:** 2.5.1
-- **Fixed in version:** 2.4.0
-- **Fixed in revision:** 13848 (#d4de9943dc44263aefdbd5381cc1572c1ad839e4)
-- **Target version:** 2.4.0",100
-91516533,2009-07-14 13:17:06.000,DispatchStr no longer works,"
-Original Reporter info from Mantis: michael @mvancanneyt
-
-- **Reporter name:** Michael Van Canneyt
-
-
-## Description:
-
-The string dispatch table is not written to the assembler file.
-
-## Steps to reproduce:
-
-Compile attached program and run it. It should end up in the MyMethod, but it is not.
-Examination of the assembler file shows that no string dispatch table is written (or it is empty)
-
-## Mantis conversion info:
-
-- **Mantis ID:** 14145
-- **OS:** all
-- **OS Build:** all
-- **Platform:** All
-- **Version:** 2.3.1
-- **Fixed in version:** 2.4.0
-- **Fixed in revision:** 13440 (#b4914d063a3e54f5b788eac9f7a1142b6ab8b487)
-- **Target version:** 2.4.0",100
-91516417,2009-06-28 20:26:56.000,whitespace handling sax_html,"
-Original Reporter info from Mantis: marco @marcoonthegit
-
-- **Reporter name:** Marco van de Voort
-
-
-## Description:
-
-Hardly any whitespace is preserved in sax_html. The below patch corrects this.
-
-
-## Mantis conversion info:
-
-- **Mantis ID:** 14073
-- **OS:** windows
-- **Platform:** x86
-- **Version:** 2.3.1
-- **Fixed in version:** 2.4.0
-- **Target version:** 2.4.0",100
-91515077,2009-03-08 20:01:47.000,TFloatFields values are formated using scientific notation if they are bigger than 100,"
-Original Reporter info from Mantis: Jesus @jramx
-
-- **Reporter name:** Jesus Reyes
-
-
-## Description:
-
-After revision 12555, TFloatFields which by default have a Precision=-1 (this value is handled specially by FloatToStrFIntl as meaning to get the max digits available, usually 17) are adjusted to Precision=2, this means for ffGeneral format, that numbers bigger than 100 are formated using scientific notation.
-
-The ffGeneral formatting is being used because serves well for general purposes, scientific notation is better suited for special cases.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 13297
-- **Version:** 2.3.1
-- **Fixed in version:** 2.4.0
-- **Fixed in revision:** 13007 (#5a488a9e5f81696335eb908f040a6011705a637b)
-- **Target version:** 2.4.0",100
-91514572,2009-01-27 09:17:55.000,Profiling no longer works on Linux,"
-Original Reporter info from Mantis: michael @mvancanneyt
-
-- **Reporter name:** Michael Van Canneyt
-
-
-## Description:
-
-Attached application does not execute when compiled with -pg
-
-## Steps to reproduce:
-
-Compile and run attached program. When compiled with -pg, nothing is executed.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 13052
-- **Platform:** linux 64-bit
-- **Version:** 2.3.1
-- **Fixed in version:** 2.4.2
-- **Fixed in revision:** 14695 (#f6ff7647ffee9f22909084043b89cb56ce10c268)
-- **Target version:** 2.4.2",200
-91513895,2008-12-09 20:52:30.000,GetInterface returns wrong results when using delegated interfaces,"
-Original Reporter info from Mantis: michael @mvancanneyt
-
-- **Reporter name:** Michael Van Canneyt
-
-
-## Description:
-
-In case of delegated interfaces, GetInterface() returns bogus results.
-
-## Steps to reproduce:
-
-Compile attached program with the usedelegation define.
-It crashes when trying to call the interface.
-
-If not using delegation, the program runs fine.
-
-It doesn't matter whether corba or regular interfaces are used.
-(program has a usecorba define to select corba/regular interfaces)
-
-The program can be compiled with delphi, and there it runs under all circumstances.
-
-
-
-
-## Mantis conversion info:
-
-- **Mantis ID:** 12778
-- **Platform:** All
-- **Fixed in version:** 2.6.0
-- **Fixed in revision:** 15073 (#3f2d66b188fd55f40bee73f6dd6cda26afa2f5d8)
-- **Monitored by:** » crossbuilder (Burkhard Carstens), » etrusco (Flávio Etrusco)
-- **Target version:** 2.4.0",100
-91512883,2008-10-09 07:39:44.000,Loading ansistring default parameters from ppu broken,"
-Original Reporter info from Mantis: michael @mvancanneyt
-
-- **Reporter name:** Michael Van Canneyt
-
-
-## Description:
-
-When loading parameter default string values, the type seems to go lost.
-When looking for abstract methods with default values for string parameters to override, the types do not match, and the abstract method is not implemented.
-
-The problem is in PPU loading, because when 2 units are compiled in 1 run,
-all works fine.
-
-## Steps to reproduce:
-
-compile attached unit b TWICE
-gru: >rm a.ppu b.ppu
-gru: >fpc -vw b.pp
-gru: >fpc -vw b.pp
-b.pp(22,16) Warning: Constructing a class ""TChild"" with abstract method ""MyMethod""
-gru: >
-
-## Mantis conversion info:
-
-- **Mantis ID:** 12323
-- **Platform:** All
-- **Version:** 2.3.1
-- **Fixed in version:** 2.2.4
-- **Fixed in revision:** 12080 (#2479700beecb8484c0f15a390a5a82b810984e52)
-- **Target version:** 2.2.4",200
-91511898,2008-08-03 15:48:55.000,testcom2 doesn't compile,"
-Original Reporter info from Mantis: marco @marcoonthegit
-
-- **Reporter name:** Marco van de Voort
-
-
-## Description:
-
-The testcom2 example of packages/winunits-base/tests no longer compiles:
-
-Free Pascal Compiler version 2.3.1 [2008/08/02] for i386
-Copyright (c) 1993-2008 by Florian Klaempfl
-Target OS: Win32 for i386
-Compiling testcom2.pp
-testcom2.pp(67,23) Error: No member is provided to access property
-testcom2.pp(69,35) Error: No member is provided to access property
-testcom2.pp(77,37) Error: No member is provided to access property
-testcom2.pp(90) Fatal: There were 3 errors compiling module, stopping
-Fatal: Compilation aborted
-Error: d:\pp11\bin\i386-win32\ppc386.exe returned an error exitcode (normal if
-ou did not specify a source file to be compiled)
-
-All errors seem to be related to properties in dispinterfaces.
-
-
-## Mantis conversion info:
-
-- **Mantis ID:** 11783
-- **Version:** 2.3.1
-- **Fixed in version:** 2.6.0
-- **Fixed in revision:** 16753 (#3a23a3ebe010a29b54ac19800724b24539bc26ed),16810 (#58f37dc952be19e5ac48076230ae7cb8445b3112),16835 (#4780278e7b27c88ba99175d2d152d8ba5406649c)
-- **Monitored by:** » mspiller (mspiller), » forest (Boguslaw Brandys)
-- **Target version:** 2.4.0",100
-91510570,2008-03-28 21:43:08.000,Reader fails to assign class properties,"
-Original Reporter info from Mantis: Jesus @jramx
-
-- **Reporter name:** Jesus Reyes
-
-
-## Description:
-
-\*In a new project's main form drop a Tbutton and a TActionList components
-\*Create an action in action list
-\*Double click the action so an event handler is created in source
-\*Attach the action to buttons action property
-\*save project and run.
-
-The button will not have caption and clicking the button doesn't trigger the event handler. See attached Lazarus project
-
-See additional information.
-
-## Additional information:
-
-tested under linux.
-
-fpc r10576
-lazarus r14660
-
-it seems like fixups are not being handled correctly.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 11060
-- **Version:** 2.3.1
-- **Fixed in version:** 2.2.2
-- **Fixed in revision:** 10678 (#d02e587866cf3358896b91e44ba0df1956bfe493)",100
-91510359,2008-03-03 18:30:08.000,"calling: inherited property := x; where property is overriden ""set"" method in descendant class doesn't call inherited method","
-Original Reporter info from Mantis: Jesus @jramx
-
-- **Reporter name:** Jesus Reyes
-
-
-## Description:
-
-compiler revision is 10355, linux x86.
-
-See attached test,
-
-## Mantis conversion info:
-
-- **Mantis ID:** 10927
-- **Version:** 2.3.1
-- **Fixed in revision:** 10464 (#8adc596c162c4993363591bb651d838c0a4beed6)",100
-91510232,2008-02-14 19:30:16.000,debug info broken,"
-Original Reporter info from Mantis: Jesus @jramx
-
-- **Reporter name:** Jesus Reyes
-
-
-## Description:
-
-debug info is apparently broken for some types
-using fpc r10316, linux
-see additional information for details.
-
-## Additional information:
-
-ppc386 -O- -O1- -gl dbginfobroken.pas
-gdb dbginfobroken
-GNU gdb 6.3
-Copyright 2004 Free Software Foundation, Inc.
-GDB is free software, covered by the GNU General Public License, and you are
-welcome to change it and/or distribute copies of it under certain conditions.
-Type ""show copying"" to see the conditions.
-There is absolutely no warranty for GDB. Type ""show warranty"" for details.
-This GDB was configured as ""i586-suse-linux""...Using host libthread_db library ""/lib/tls/libthread_db.so.1"".
-
-```
-(gdb) b STRTODATE
-Breakpoint 1 at 0x8048089: file dbginfobroken.pas, line 9.
-(gdb) r
-Starting program: etc.../dbginfobroken
-
-Breakpoint 1, STRTODATE (S=0x0) at dbginfobroken.pas:9
-9 s1 := '';
-(gdb) set language pascal
-(gdb) p s1
-$1 =
-```
-
-
-## Mantis conversion info:
-
-- **Mantis ID:** 10830
-- **Version:** 2.3.1
-- **Fixed in version:** 2.2.2
-- **Fixed in revision:** 10617 (#f2b4ce13d4905a968e5c0c1193ac3055437289b5)
-- **Target version:** 2.2.2",100
-91510036,2008-01-29 19:53:57.000,overloading problems involving literals,"
-Original Reporter info from Mantis: marco @marcoonthegit
-
-- **Reporter name:** Marco van de Voort
-
-
-## Description:
-
-The test program is accepted by Delphi, but FPC says:
-
-C:\>fpc overloadingproblem.dpr
-Free Pascal Compiler version 2.3.1 [2008/01/29] for i386
-Copyright (c) 1993-2007 by Florian Klaempfl
-Target OS: Win32 for i386
-Compiling overloadingproblem.dpr
-overloadingproblem.dpr(64,25) Error: Can't determine which overloaded function to call
-overloadingproblem.dpr(66,4) Fatal: There were 1 errors compiling module, stopping
-Fatal: Compilation aborted
-
-## Mantis conversion info:
-
-- **Mantis ID:** 10727
-- **Version:** 2.3.1
-- **Fixed in version:** 2.2.2
-- **Fixed in revision:** 10985 (#64bad1e0c5d4756a62d2d9abb492b28e58339943)
-- **Target version:** 2.2.2",100
-91507139,2007-09-30 11:35:09.000,GDB enters error state always,"
-Original Reporter info from Mantis: Almindor
-
-- **Reporter name:** Ales Katona
-
-
-## Description:
-
-Lazarus projects compiled with -gl (empty gtk2 form is enough), produce an internal error in GDB. I have confirmed this to be a FPC bug (altough I guess, we also found a GDB bug :D) because 2.2.1 with same project works, but trunk causes the GDB IE on start.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 9821
-- **OS:** Linux
-- **OS Build:** 2.6
-- **Platform:** x86_32
-- **Version:** 2.3.1
-- **Fixed in version:** 2.2.2
-- **Fixed in revision:** 8702 (#f6f4682fb479157d1ba56d01d4834286653deb7c)",100
-91506870,2007-09-16 08:16:10.000,PASJPEG doesn't compile with Level 1 optimalizations,"
-Original Reporter info from Mantis: laaca@seznam.cz
-
-- **Reporter name:** Ladislav Lacina
-
-
-## Description:
-
-If you try to compile PASJPEG with no optimalizations, all is OK. If you turn on Level 1 optimalizatios, compilation ends on JMEMMGR.PAS on line 325 with error report: ""asm: [push imm8] invalid combination of opcode and operands""
-
-## Mantis conversion info:
-
-- **Mantis ID:** 9706
-- **Version:** 2.2.0
-- **Fixed in version:** 2.2.2
-- **Fixed in revision:** 8665 (#cad3551b5743b27c20e37226ef6c6c1867c1e7d9)
-- **Target version:** 2.2.2",200
-91506591,2007-08-29 08:28:58.000,Allow export of variables on Linux from library file,"
-Original Reporter info from Mantis: michael @mvancanneyt
-
-- **Reporter name:** Michael Van Canneyt
-
-
-## Description:
-
-Allow the following under Linux:
-
-Library something;
-
-``` pascal
-uses someunit;
-
-Var
- A : TSomeType;
-
-Exports
- A name 'aname';
-
-begin
-end.
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 9524
-- **OS:** Linux
-- **Version:** 2.3.1
-- **Fixed in version:** 2.2.4",100
-91506572,2007-08-25 16:12:00.000,Demo's (like hello.pp) are installed in prefix/share/doc/fpc-2.1.5/examples/share/doc/fpc-2.1.5/demo,"
-Original Reporter info from Mantis: Joost
-
-- **Reporter name:** Joost van der Sluis
-
-
-## Description:
-
-If you use install/makepack to create a release, the install-script installs the demo's in the wrong place.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 9500
-- **Version:** 2.2.0
-- **Fixed in version:** 2.2.2
-- **Target version:** 2.2.2",300
-91505225,2007-06-24 01:38:29.000,SetMethodProp failure under x86_64,"
-Original Reporter info from Mantis: Jesus @jramx
-
-- **Reporter name:** Jesus Reyes
-
-
-## Description:
-
-SetMethodProp is not working right under x86_64, attached test fails when compiled under ubuntu 64-bits, same test runs on under 2.0.4 and 2.1.5 linux 32-bit.
-
-This bug is very important for Lazarus (linux 64-bit, Win64 not tested).
-
-## Additional information:
-
-under 32-bit system output is:
-\-------------------------------
-Test Called
-OnTest no set
-Testing SetMethodProp method
-Test Called
-
-under 64-bit system output is:
-\-------------------------------
-Test Called
-OnTest no set
-Testing SetMethodProp method
-An unhandled exception occurred at $0000000000400211 :
-```
-EAccessViolation : Access violation
- $0000000000400211
- $0000000000400440
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 9141
-- **Version:** 2.2.0
-- **Fixed in version:** 2.2.0
-- **Fixed in revision:** 8207 (#f67e47540eec76978750aba9c219aa05d92c01e7)
-- **Target version:** 2.2.0",100
-91504305,2007-05-19 15:21:05.000,create html pages for mirroring,"
-Original Reporter info from Mantis: marco @marcoonthegit
-
-- **Reporter name:** Marco van de Voort
-
-
-## Description:
-
-Currently, no daily html snapshot is generated, only Apache .var?
-
-The stack mirror is still broken because of it (and maybe more mirrors)
-
-
-## Mantis conversion info:
-
-- **Mantis ID:** 8905
-- **Version:** 2.2.1",100
-91503607,2007-03-10 16:10:07.000,IE 200611034 (typinfo dispinterfaces?),"
-Original Reporter info from Mantis: marco @marcoonthegit
-
-- **Reporter name:** Marco van de Voort
-
-
-## Description:
-
-Trying to compile apilib with dispid supports generates this IE.
-
-I'm still isolating, but I suspect that may take a while since the file is 300k, and uses jwawindows which is larger than our own Windows unit.
-
-
-## Additional information:
-
-However looking at the IE place, I suspect this is simply missing of RTTI generating of dispinterfaces.
-
-It would be nice to fix this for 2.2, since that would allow apilib to ship with dispinterfaces support.
-
-
-## Mantis conversion info:
-
-- **Mantis ID:** 8497",300
-91503524,2007-02-28 23:28:36.000,Request for extended Clone function in linux.pp,"
-Original Reporter info from Mantis: ivo_steinmann@gmx.net
-
-- **Reporter name:** Ivo Steinmann
-
-
-## Description:
-
-Newer kernel version supports more parameters for Clone. I would like to use them so I request for an extension of Clone in linux.pp
-
-implemented one:
-``` _syscall2(int, clone, int, flags, void *, child_stack)```
-
-requested one:
-```
- _syscall5(int, clone, int, flags, void *, child_stack,
- int *, parent_tidptr, struct user_desc *, newtls,
- int *, child_tidptr)
-```
-
-
-I allready commited the new CLONE_* flags to linux.pp but without the new parameters I cant use it.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 8433
-- **OS:** Linux Gentoo x86_64
-- **OS Build:** 2006
-- **Platform:** AMD64 x2 am2
-- **Version:** 2.2.0",100
-91503239,2007-02-11 20:47:59.000,Debugging sub-procedures in methods won't work,"
-Original Reporter info from Mantis: Joost
-
-- **Reporter name:** Joost van der Sluis
-
-
-## Description:
-
-If a method which is defined in a unit has a sub-procedure, debugging that sub-procedure isn't possible. A breakpoint there will never get executed. If you try to step into the sub-procedure, the program will continue running.
-
-For an example, see the additional info.
-
-## Additional information:
-
-``` pascal
-------TestBasics.pas------
-unit TestBasics;
-
-{$mode objfpc}{$H+}
-
-interface
-
-type
- TTestBasics = class(TObject)
- public
- procedure TestInitFielddefsFromFields;
- end;
-
-implementation
-
-procedure TTestBasics.TestInitFielddefsFromFields;
-
- Procedure CompareFieldAndFieldDef;
- begin
- writeln('Set a breakpoint here, the debugger will not stop here');
- end;
-
-begin
- writeln('without this line ther is no problem');
- CompareFieldAndFieldDef;
-end;
-
-end.
-------Project1.pas------
-program project1;
-
-{$mode objfpc}{$H+}
-
-uses
- testbasics;
-
-var ATestBasics : TTestBasics;
-
-begin
- ATestBasics := TTestBasics.Create;
- ATestBasics.TestInitFielddefsFromFields;
-end.
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 8314
-- **Version:** 2.2.0
-- **Fixed in version:** 2.2.0
-- **Fixed in revision:** 6960 (#f91620c22b1a69481d353945d581933b63244a15)+7008 (#69a4e616ba61b518358935fd1d0faceefad7052a)
-- **Target version:** 2.2.0",200
-91502560,2007-01-12 22:39:52.000,Compiler crash,"
-Original Reporter info from Mantis: Almindor
-
-- **Reporter name:** Ales Katona
-
-
-## Description:
-
-Crashes on the attached code. SDL is included, just do ""fpc -Fusdl project1.pas""
-
-## Mantis conversion info:
-
-- **Mantis ID:** 8109
-- **OS:** Linux
-- **OS Build:** 2.6
-- **Platform:** x86_32
-- **Version:** 2.2.0
-- **Fixed in version:** 2.2.0
-- **Fixed in revision:** 5951 (#38d54234d7faf3f6fe8e1f0c02164d18eec18bf1)",200
-91502248,2006-12-16 15:59:30.000,startlazarus can't find lazarus and lazarus can't find ppc386,"
-Original Reporter info from Mantis: Almindor
-
-- **Reporter name:** Ales Katona
-
-
-## Description:
-
-If I start ""startlazarus"" I get a nice error message which says: Executable not found &LtPos;path to lazarus which exists and works>.
-
-If I start lazarus with lazarus itself, it works but on compilation: ""Executable not found &LtPos;path to a valid ppc386"".
-
-I guess it's in LCL since SysUtils/fileexists works with the version of fpc I used (2.1.1 latest)
-
-## Mantis conversion info:
-
-- **Mantis ID:** 7980
-- **OS:** Linux
-- **OS Build:** 2.6
-- **Platform:** x86_32
-- **Version:** 0.9.21 (SVN)",100
-91502026,2006-11-26 09:37:20.000,Line numbers reported by fpc when error occurs are sometimes wrong,"
-Original Reporter info from Mantis: Almindor
-
-- **Reporter name:** Ales Katona
-
-
-## Description:
-
-Sometimes even the unit is wrong. I don't have a small test-case, but all bigger projects seems to have this problem with 2.1.1 (and some with 2.0.4 too).
-
-If you try for example glscene, break something in some of the projects units, and compile. You'll probably get the error reported in wrong unit wrong line (and this isn't a lazarus bad parsing of the output..)
-
-Sorry for the missing test-case but I can't reproduce with smaller projects.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 7883
-- **Version:** 2.2.0
-- **Fixed in version:** 2.2.0
-- **Fixed in revision:** 6623 (#199ab92eb8ad01c7ddc3295e46972d827ddf235f)
-- **Monitored by:** » Joost (Joost van der Sluis)
-- **Target version:** 2.2.0",100
-91501912,2006-11-13 21:06:23.000,Compiler error trying to call inline code (2.1.1 PPC),"
-Original Reporter info from Mantis: jda
-
-- **Reporter name:**
-
-
-## Description:
-
-I'm trying to call the following functions with FPC Pascal:
-
-CFByteOrderGetCurrent
-CFSwapInt16
-
-Both are defined in CFByteOrders as inline.
-
-I've added this to the implementation portion of the unit
-
- {$INLINE ON}
-
-But I'm getting compile errors with a line like this (e.g. Internal
-error 22799):
-
- byteOrder := CFByteOrderGetCurrent;
-
-## Additional information:
-
-I've isolated the problem in fpc/tests/tw7817*.pp. If you compile both in one pass (by compiling tw7817b.pp), there is no problem. There is only a problem if CFByteOrderGetCurrent has to be loaded from a ppu file.
-
-I don't know where/why the constsym's are supposed to be removed, so I'm not sure about the fix. Assigning to Peter.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 7817
-- **Version:** 2.2.0
-- **Fixed in version:** 2.2.0
-- **Fixed in revision:** 5540 (#b957d59391de44bfedcac394cdddccfe85faea06)
-- **Target version:** 2.2.0",100
-91501260,2006-10-16 09:21:48.000,Compilation crashes on 2.1.1,"
-Original Reporter info from Mantis: Almindor
-
-- **Reporter name:** Ales Katona
-
-
-## Description:
-
-Try to compile (""make"" in lw dir) the given project and you'll end up with:
-
-```
-Compiling ./basesdl/sdl_ttf.pas
-Fatal: Compilation aborted
-An unhandled exception occurred at $08101270 :
-EAccessViolation : Access violation
- $08101270
- $080FDE6D
- $080FD1F8
- $080FCEC8
- $080FD1C5
- $080FCEC8
- $080FD245
- $080FCEC8
- $080FD245
- $080FCEC8
- $080FD1F8
- $080FCEC8
- $080FD13F
- $080FCEC8
- $080FD1C5
- $080FCEC8
- $080FD1F8
-
-Compilation aborted lentilwars.pas:0
-Runtime error 217 at $08052C91
- $08052C91
- $080482F5
-```
-
-
-## Additional information:
-
-Linking WILL fail if you don't have some SDL libs, but if that happens it's already past compilation bug part.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 7620
-- **OS:** FreeBSD
-- **OS Build:** 6.1
-- **Platform:** x86_32",200
-91501191,2006-10-12 11:47:23.000,IE on lazarus compilation with latest 2.1.1,"
-Original Reporter info from Mantis: Almindor
-
-- **Reporter name:** Ales Katona
-
-
-## Description:
-
-Compiling lclstrconsts.pas
-Writing Resource String Table file: lclstrconsts.rst
-lclstrconsts.pas(296) Fatal: Internal error 200603012
-
-## Mantis conversion info:
-
-- **Mantis ID:** 7598
-- **OS:** FreeBSD
-- **OS Build:** 6.1
-- **Platform:** x86_32
-- **Fixed in version:** 2.2.0
-- **Fixed in revision:** r4867 (#52b3257d9c43a8a10fbcf3844e3c88e03fdd1fa8)",100
-91501166,2006-10-11 18:30:48.000,FPC 2.1.1 Internal Error compiling itself at rev. 4863,"
-Original Reporter info from Mantis: Almindor
-
-- **Reporter name:** Ales Katona
-
-
-## Description:
-
-dataset.inc(1588,77) Fatal: Internal error 200108231
-
-OS: FreeBSD
-ARCH: x86_32
-
-## Mantis conversion info:
-
-- **Mantis ID:** 7593
-- **Fixed in version:** 2.2.0
-- **Fixed in revision:** 4896 (#ea69e220442564e7772001c447020bfc4fce24a8)",100
-91501006,2006-10-02 23:22:13.000,Mixing string types in {$H+} crash compiler,"
-Original Reporter info from Mantis: Jesus @jramx
-
-- **Reporter name:** Jesus Reyes
-
-
-## Description:
-
-Free Pascal Compiler version 2.1.1 [2006/10/02] for i386
-revision 4765
-
-The given test program run fine as is, enabling ifdef fail1 or fail2
-crash the compiler.
-
-## Mantis conversion info:
-
-- **Mantis ID:** 7527
-- **Version:** 2.2.0
-- **Fixed in version:** 2.2.0
-- **Fixed in revision:** 4770 (#2f0ce317510ebd7bf262c060ff741c0e7f0afcf6)",100
-91500957,2006-10-01 19:45:36.000,FreePascal compiler can't produce libraries on amd64,"
-Original Reporter info from Mantis: Flawless
-
-- **Reporter name:** Christian Iversen
-
-
-## Description:
-
-fpc cannot compile and link even an empty library in the newest SVN.
-
-## Steps to reproduce:
-
-fpc emptylib.pas
-
-## Additional information:
-
-emptylib.pas:
-
-``` pascal
-library emptylib;
-begin
-end.
-```
-
-## Mantis conversion info:
-
-- **Mantis ID:** 7510
-- **OS:** Linux
-- **OS Build:** 2.6.15
-- **Build:** SVN: 4765
-- **Platform:** x86_64
-- **Version:** 2.2.0
-- **Fixed in version:** 2.2.0
-- **Fixed in revision:** 5831 (#ff40ed3264f5bc5930a6eb64d6344bc9789423ca)
-- **Monitored by:** » jo@magnus.de (Jochen Magnus), » dleducq (Dominique Leducq), » mgreiner (mgreiner), » werner.bochtler@zkrd.de (Werner Bochtler)
-- **Target version:** 2.2.0",300