Re: Bind achieved But when run .exe an error message Explain please ?
- Posted by BRyan Jan 29, 2013
- 1179 views
Selgor said...
Hello Bernie.
Thank you for your reply.
eudir is c:\euphoria.
path is c:\euphoria\bin.
include file is in euphoria.
This is normal isn't it ?
So I wonder what IL is ?
Cheers . Selgor.
Hello Selgor The IL stands for "intermediate language" . When you bind a program, your program is compressed into a small program using the IL code. The IL code is then is combined with a IL interpreter. ( backend ) When the IL code is generated it is assigned a constant IL_VERSION ( which is a version number ). When the IL interpreter starts it checks the IL code ( IL_VERSION ) the version number. The IL interpreter compares what IL_VERSION of code it was built to interpret; if internal IL_VERSION of the interpreter does match the IL_VERSION of IL code. The IL interpreter reports the error that you are seeing. Bernie