Re: [fpc-pascal] FP.exe error in x86_64-Win64

2019-08-07 Thread Jean SUZINEAU
Hello, I reproduced the problem. I run fpcupdeluxe x86_64-win64-win32, this is the log of what I've done: button Setup+, Options Override, FPC options -gw, then click OK, then click FPC Only After recompilation by fpcupdeluxe: Open cmd, cd to fpcupdeluxe\fpc\bin\x86_64-win64

Re: [fpc-pascal] Set size limit

2019-08-07 Thread larry03052
Try this: unit genericset (t); interface type genset=pointer; (*! The functions getnext, getlast and getfirst must never be called on an empty set. The function getnext should never be called on the last element of a set. *) procedure genericsetnext(var v:t;s:genset); procedure

Re: [fpc-pascal] FP.exe error in x86_64-Win64

2019-08-07 Thread James Richters
That is correct, it starts up fine, I can use the pull down menus.. but it gives me the error as soon as I try to compile anything. What is the proper way to recompile the IDE? I didn't compile it to start off with, I used FPCupDeluxe from

Re: [fpc-pascal] FP.exe error in x86_64-Win64

2019-08-07 Thread Pierre Muller
I misunderstood your previous problem, it only crashes when you try to compile the source, not at startup... Did you ever try to debug a program on Win64? Now is the time to try: you will need a win64 GDB and recompile the IDE using -gw option. The important GDB option here is set win32

Re: [fpc-pascal] FP.exe error in x86_64-Win64

2019-08-07 Thread James Richters
I deleted all files that start with FP so it would have to make new ones and tried to compile: Writeln('Hello World!'); And it did not work.. it has the exact same error. James -Original Message- Hi, Le 07/08/2019 à 13:17, James Richters a écrit : > I’m trying to use FPC3.0.4 for

Re: [fpc-pascal] FP.exe error in x86_64-Win64

2019-08-07 Thread Pierre Muller
Hi, Le 07/08/2019 à 13:17, James Richters a écrit : > I’m trying to use FPC3.0.4 for x86_64-win64.  > > I built it with: > https://github.com/LongDirtyAnimAlf/fpcupdeluxe/releases/tag/1.6.2x   -   > fpcupdeluxe-x86_64-win64.exe > >   > > I am trying to use the Text IDE using the same FP.CFG

[fpc-pascal] FP.exe error in x86_64-Win64

2019-08-07 Thread James Richters
I’m trying to use FPC3.0.4 for x86_64-win64. I built it with: https://github.com/LongDirtyAnimAlf/fpcupdeluxe/releases/tag/1.6.2x - fpcupdeluxe-x86_64-win64.exe I am trying to use the Text IDE using the same FP.CFG FP.INI and FP.DSK that worked with the i368-win32 version… When I

Re: [fpc-pascal] USB Human Interface Devices

2019-08-07 Thread James Richters
>I'm going to have a look at that. Actually, it seems there's no package for >fpc windows 64 bits. No there isn’t , which is odd because 64bit computers vastly outnumber 32bit computers… but I guess since 32bit code runs on both if you needed to pick one then 32 would be the one to pick… I