"-va" doesn't help.
Should have been more detailed.
-va produces tons of output. You need to copy it (all of it, not just the part the IDE shows), and look through it.
It will tell you for every file where it
- looks for it
- found it (or didn't)
Then you can see, if and which files come from the old install. And with that knowledge you can track down whatever setting or config file is still wrong.
---------------
The issue that "fpc" is looking for "ppc..." in the global path....
If you do not cross compile configure the IDE with the ppc... in the fpc field. So fpc is skipped
Then use -va to find a spot to place the fpc.cfg.
Make sure the fpc.cfg has the correct paths.
You can recreate it with (whatever pathes you have)
fpcmkcfg -d basepath=/home/nnnnn/fpcinstall/lib/fpc/3.2.0 fpc.cfg
If you don't have a global config at all
https://www.freepascal.org/docs-html/user/userap1.htmlsays you can do
fpc @path/to/fpg.cfg
(not tested // also maybe ppc @fpc.cfg)
If needs must, write a shell script to execute fpc, and call that from the IDE.
fpcupdeluxe promises to have its own way to solve all this.
But I haven't used it on linux, so I don't know the details.
Having more than one fpc install on a linux box, unfortunately seems to be one of the more tricky endeavours.