1

I've just installed XE2 together with Jedi 3.45. this appears to have broken my Delphi 7 installation!

I have uninstalled XE2 and Jedi, I have cleaned up and removed all invalid paths bpl, dcu and source. However when I reinstall Jedi 3.4x I get a series of errors on starting D7, all along the lines of:

Procedure Entry Point @$xp$34jclUnitVersioning @TUnitVersionInfo could not be located in dynamic link library jcl70.bpl

I have run tried running a repair install of D7 and various (earlier) versions of jedi but can't seem to fix the problem.

I need D7 + JCL/JVCL in order to maintain our main Group Software Application.

Any and all help urgently required.

Paul

RRUZ
  • 134,889
  • 20
  • 356
  • 483
Paul
  • 43
  • 6
  • Yep. Clear case of you need to clean up, as Ken says. Be sure to examine every folder in your library path and ask if you really need that folder to be in that library path. – Warren P Dec 22 '11 at 21:28

2 Answers2

1

You missed something. :) Search your entire drive for any of the JCL/JVCL files (including .bpl, .dcp, .dcu). You have one that doesn't match up somewhere. Note that the mismatched file can be in the Windows System/System32/SysWOW64 folders as well as somewhere related to Delphi if they're used by the IDE at designtime or as runtime packages.

JCLUnitVersioning is in the JCL160 package for XE2, I think. Your D7 project is looking in jcl70, which would be the Delphi 7 version of that package. This means that the IDE is looking for one compiled version, but finding a different one. (It's probably that the install of 3.45 rebuilt and replaced the packages for D7 when the ones for XE2 were compiled.)

When you rolled back the install of JVCL to the previous version, did you also revert back to the corresponding version of JCL? The newer JVCL install would have probably required a later version of JCL and installed it also.

Ken White
  • 123,280
  • 14
  • 225
  • 444
  • 1
    If Paul has run the JVCL installer multiple times, it is possible that it has modified his library path multiple times, and that these old folders contain junk he doesn't even know Delphi can see. – Warren P Dec 22 '11 at 21:30
  • @WarrenP: Good point. The PATH check may help figure out what's going on also. – Ken White Dec 22 '11 at 21:35
1

Solved this after much uninstal/instal cycles - I think the problem was that I had UnitVersioning unchecked in the JVL but checked in the JVCL (?) anyway ensuring that they were both the same seems to have cleared the problem.

Its always the simple (read stupid) ones that catch you our!

Paul
  • 43
  • 6