0
I am trying to install the JEDI components in Delphi Berlin 10.1 in my environment, however, I am getting a compilation error in bpl "Jvcore240". The installation of JCL usually happens, without any error, but when I try to install JVCL (which depends on the installation of JCL), I get this compilation error and I can’t install it;
Jvcore.dpk(2364) Fatal: F2063 Could not Compile used Unit 'Jvappinistorage.pas'
Procedures executed for possible resolutions:
- I always run install.bat as Administrator
- The JEDI version is compatible with Berlin (the same component has already been installed in another environment, and is running 100%)
- Previous versions of Delphi have already been uninstalled to avoid possible conflicts.
- Delphi Berlin 10.1 has been reinstalled
- I have already tried to manually install the packages in.dpk by Delphi itself and the same error is shown in Unit 'Jvappinistorage.pas'
Installer Error Screenshot:
I managed to solve. For some reason, the JCL installer was taking the path from the previous version of JEDI to add the Delphi 'Library Paths'. That is, instead of using the correct path that would be "(...)Jedi jcl Packages D24" to compile the packages, the installer was passing the "D23" folder to Delphi’s Library Path, which caused a version error in the Component Installation (JVCL). The installation of JCL was compiling the version of Delphi Seattle and JVCL was compiling its version of Delphi Berlin, and this caused this incompatibility error.
– GuuzT
There is no need to add SOLVED in the title, but you can post your solution as an answer in the field below, so it can serve others with similar problem :)
– user28595