Jump to content
William23668

Trying to install JCL but I got error

Recommended Posts

Hi

I got latest JCL from here:

https://github.com/project-jedi/jcl

 

But when I try to install using jcl\install.bat I got this error:

Include file "source\include\jedi\jedi.inc" not found.

 

I added the jedi.inc manually from jedi folder but I still get same error. How to install these components ?

Share this post


Link to post

Almost all my problems with JCL and JVCL installs were because of I had somewhere on the disk (on the path) another instance of JCL/JVCL, which was (partially) used instead of the new version.

Share this post


Link to post

I dont have any other places for these components. I did not use JVCL from like so many years

Share this post


Link to post
56 minutes ago, Vandrovnik said:

Almost all my problems with JCL and JVCL installs were because of I had somewhere on the disk (on the path) another instance of JCL/JVCL, which was (partially) used instead of the new version.

That's funny. Almost all my problems with JCL and JVCL was caused by the fact that I installed them in the first place. Easily solvable though 🙂

  • Haha 1

Share this post


Link to post
1 hour ago, William23668 said:

But when I try to install using jcl\install.bat I got this error:

Include file "source\include\jedi\jedi.inc" not found.

I'm not sure but I think it needs to be installed using some sort of installer which then generates the include file based on something, something, whatever, at this point I gave up and deleted everything.

Share this post


Link to post
15 minutes ago, Anders Melander said:

I'm not sure but I think it needs to be installed using some sort of installer which then generates the include file based on something, something, whatever, at this point I gave up and deleted everything.

They only write to use jcl\install.bat in github 

Share this post


Link to post
3 minutes ago, William23668 said:

They only write to use jcl\install.bat in github 

Yeah but have you looked into install.bat (warning: have the suicide prevention hotline on speed dial if you do):

:: compile installer
echo.
echo ===================================================================
echo Compiling JediInstaller...
build\dcc32ex.exe %INSTALL_VERBOSE% --runtime-package-rtl --runtime-package-vcl -q -dJCLINSTALL -E..\bin -I..\source\include -U..\source\common;..\source\windows JediInstaller.dpr
if ERRORLEVEL 1 goto FailedCompile
:: New Delphi versions output "This product doesn't support command line compiling" and then exit with ERRORLEVEL 0
if not exist ..\bin\JediInstaller.exe goto FailedCompile

echo.
echo ===================================================================
echo Launching JCL installer...

::start ..\bin\JediInstaller.exe %*
if not exist ..\bin\JCLCmdStarter.exe goto FailStart
..\bin\JCLCmdStarter.exe ..\bin\JediInstaller.exe %*
if ERRORLEVEL 1 goto FailStart
goto FINI

 

  • Haha 1

Share this post


Link to post

I tried again now with another jedi.inc but I got :

The "source\include\jedi\jedi.inc" include file is outdated.

Share this post


Link to post
2 minutes ago, William23668 said:

Problem solved

No, it's just begun.

 

Okay, I'll stop now. I think I got my point across 🙂

  • Haha 2

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×