Re: [fpc-pascal] Warnings crti.o and crtn.o not found

2013-04-14 Thread Marco van de Voort
In our previous episode, waldo kitty said: > that i can't say as i don't know :( hopefully someone with deeeper knowledge > will ring in... i just wanted to offer what i could in the hope that it might > be > helpful... > > as it is, i'm just now updating my winboxen to 2.6.2 from > http://svn

Re: [fpc-pascal] Warnings crti.o and crtn.o not found

2013-04-14 Thread Sven Barth
On 14.04.2013 18:30, waldo kitty wrote: On 4/14/2013 12:17, Reimar Grabowski wrote: On Sun, 14 Apr 2013 11:55:14 -0400 waldo kitty wrote: 2.7.1? that's trunk, right? Yes. whew... viewvs made me walk thru every commit as i could not find a way to limit it to display only the commits for tru

[fpc-pascal] TDBF: Initial Visual FoxPro support

2013-04-14 Thread Reinier Olislagers
Hi FPC & Lazarus lists, I've been working on the tdbf code. It had rudimentary support for both Visual Foxpro and older Foxpro file formats, but mixed them up a bit. I split out the distinction so you can specify either foxpro tablelevel (25) or Visual Foxpro (30). Just like the original code an

Re: [fpc-pascal] Warnings crti.o and crtn.o not found

2013-04-14 Thread Anthony Walter
I had this same problem a week or so ago: http://free-pascal-general.1045716.n5.nabble.com/Warning-quot-crti-o-quot-and-quot-crtn-o-quot-not-found-td5713867.html To fix it I searched for those files and added the directory they were in to the library path. I hadn't had this problem until recently

Re: [fpc-pascal] Warnings crti.o and crtn.o not found

2013-04-14 Thread waldo kitty
On 4/14/2013 12:17, Reimar Grabowski wrote: On Sun, 14 Apr 2013 11:55:14 -0400 waldo kitty wrote: Commit: 23892 Author: florian Date: Sun Mar 17 14:51:19 2013 UTC (4 weeks ago) Changed paths: 4 Log Message:+ warn if one of the linux libc startup code files is not

Re: [fpc-pascal] Warnings crti.o and crtn.o not found

2013-04-14 Thread waldo kitty
On 4/14/2013 12:17, Reimar Grabowski wrote: On Sun, 14 Apr 2013 11:55:14 -0400 waldo kitty wrote: 2.7.1? that's trunk, right? Yes. whew... viewvs made me walk thru every commit as i could not find a way to limit it to display only the commits for trunk... but i didn't look all that hard,

Re: [fpc-pascal] Warnings crti.o and crtn.o not found

2013-04-14 Thread Reimar Grabowski
On Sun, 14 Apr 2013 11:55:14 -0400 waldo kitty wrote: > 2.7.1? that's trunk, right? Yes. > maybe this commit?? > > Commit: 23892 > Author: florian > Date: Sun Mar 17 14:51:19 2013 UTC (4 weeks ago) > Changed paths:4 > Log Message:+ warn if one of the linux

Re: [fpc-pascal] Warnings crti.o and crtn.o not found

2013-04-14 Thread waldo kitty
On 4/14/2013 10:29, Reimar Grabowski wrote: Hi, I just updated my FPC 2.7.1 from revision 23807 to 24236 and for every project I compile I now get warnings that crti.o and crtn.o are not found. based on prior discussions on these FPC/Lazarus lists, these are C runtime files... 2.7.1? that's

Re: [fpc-pascal] Free member after inherited Destroy;

2013-04-14 Thread Michael Van Canneyt
On Sat, 13 Apr 2013, Zaher Dirkey wrote: Is it safe to free memeber object after call inherited in Destroy? in Delphi/ObjFPC modes type TMyObject=class(TObject)    FMyMember:TmyMemberObject; destructor TMyObject.Destroy; begin   inherited Destroy;   FreeAndNil(FMyMember); end; This sh

[fpc-pascal] Warnings crti.o and crtn.o not found

2013-04-14 Thread Reimar Grabowski
Hi, I just updated my FPC 2.7.1 from revision 23807 to 24236 and for every project I compile I now get warnings that crti.o and crtn.o are not found. Does anyone know why I suddenly get the warnings? How do I get rid of the warnings? This is on Ubuntu 12.10 AMD64. R. ___