Re: [fpc-pascal] Crypt++ 5.5.2 Tiger::Transform converted toDCPCrypt2.Compress, AV: Compiler Optimization Bug with SSE2 ? Or just programming bug ?HELP NEEDED :) ?!

2008-03-20 Thread Tomas Hajny
On Wed, March 19, 2008 09:43, Skybuck Flying wrote: > Ok, > > I already solved problem by using: > > pushad > > .. rest of asm ... > > popad > > However this might be slower than just a few pushes and pops ? > > So any slight performance improvements welcome, but I am already quite > happy > with t

Re: [fpc-pascal] Sysutils

2008-03-20 Thread Frank McCormick
On Thu, 20 Mar 2008 14:42:08 +0100 (CET) Michael Van Canneyt <[EMAIL PROTECTED]> wrote: > > Every reference to the StrInt function in Sysutils results in an > > error. I have checked fpc.cfg in /etc and .fpc.cfg in my home > > Any idea what could be wrong ? > > It should be StrToInt, not StrInt

Re: [fpc-pascal] Sysutils

2008-03-20 Thread Joost van der Sluis
Op donderdag 20-03-2008 om 09:40 uur [tijdzone -0400], schreef Frank McCormick: > > Every reference to the StrInt function in Sysutils results in an > error. > I have checked fpc.cfg in /etc and .fpc.cfg in my home directory and > they contain the unit path to the system files. Sysutils is include

Re: [fpc-pascal] Sysutils

2008-03-20 Thread Michael Van Canneyt
On Thu, 20 Mar 2008, Frank McCormick wrote: > > > I have run into a problem compiling a unit under the latest fpc on > Debian Sid. > > Every reference to the StrInt function in Sysutils results in an error. > I have checked fpc.cfg in /etc and .fpc.cfg in my home directory and > they contain

[fpc-pascal] Sysutils

2008-03-20 Thread Frank McCormick
I have run into a problem compiling a unit under the latest fpc on Debian Sid. Every reference to the StrInt function in Sysutils results in an error. I have checked fpc.cfg in /etc and .fpc.cfg in my home directory and they contain the unit path to the system files. Sysutils is included in the

Re: [fpc-pascal] Crypt++ 5.5.2 Tiger::Transform converted toDCPCrypt2.Compress, AV: Compiler Optimization Bug with SSE2 ? Or just programming bug ?HELP NEEDED :) ?!

2008-03-20 Thread Skybuck Flying
Ok, I already solved problem by using: pushad .. rest of asm ... popad However this might be slower than just a few pushes and pops ? So any slight performance improvements welcome, but I am already quite happy with this solution ! ;) Bye, Skybuck.