Page 1 of 1

tsiLang and Delphi 2010

Posted: Thu Aug 27, 2009 7:08 am
by mivi71dk
Hi

We have just upgraded to Delphi 2010.
We have purchased tsiLang not long ago version 6.4 to use with Delphi 5.

Can I use this version with our new Delphi 2010?

Regards
Michael

Posted: Wed Sep 02, 2009 5:06 am
by isiticov
Hello,

We're working now under including 2010 support to TsiLang.

Posted: Mon Sep 07, 2009 8:28 pm
by wcizmowski
Hello,
Ok, then now we can only recompile the projects,
without IDE 2010 integration ?

Posted: Tue Sep 08, 2009 8:45 am
by isiticov
Hello,

Yes, if you have the source edition, then you can just re-compile your projects under 2010 compiler and it should work fine.

Posted: Tue Sep 08, 2009 10:15 am
by wcizmowski
hi,
so, it is small problem with installation of the package,
i have error message (under Delphi 2010):
"[DCC Fatal Error] sireg.pas(27): E2213 Bad packaged unit format: Tsilang_2009r.dcp.soComp"

my question:
- what i can do?
- when will be SiComponents for Delphi 2010? This month maybe?

Posted: Tue Sep 08, 2009 10:51 am
by wcizmowski
Hello,
Ok, after delete old dcu files is possible to compile package under Delphi 2010, but on install package i have error:

Image

Posted: Wed Sep 09, 2009 1:49 am
by isiticov
Please wait a little. We're in final stage and I hope new release will be in couple of days.

Posted: Thu Sep 10, 2009 7:53 pm
by ix07
Hi. I have CB2010 and the source edition. How can I re-compile SiComponents?

Thanks.

Best Regards
Eike Petersen


> Yes, if you have the source edition, then you can just re-compile your projects under 2010 compiler and it should work fine.

Posted: Fri Sep 11, 2009 2:01 pm
by isiticov
Hello,

6.5 version is just published, so you can try it.

Posted: Fri Sep 11, 2009 5:42 pm
by ix07
Great news. Thanks!

Just to satisfy my curiosity - is it possible to build the source-edition SiComponents with CB2007/CB2009/CB2010? How?

Thanks!

Posted: Mon Sep 14, 2009 11:27 am
by isiticov
TsiLang sources are Delphi code and we use Delphi to build packages and to generate needed files for C++. So in case you have Delphi identity installed into Studio, then you can just open package and re-build it.

Posted: Wed Sep 16, 2009 3:24 pm
by ix07
Uh. No, I don't have the Delphi-identity. Just CB2010. Is there no way? CB2010 includes the Delphi-compiler in form of the "DCC32.exe". You can build the JCL/JVCL which includes only pascal-sources using CB2010. There must be a way to do it...

Posted: Thu Sep 17, 2009 8:59 am
by isiticov
Yes, it is possible to compile the sources using DCC32.EXE. Actually, this is the way we use for automated builds before releasing new version.
The command line will look like this:

Code: Select all

"%DELPHI_PATH%\Bin\dcc32.exe"  -$A8 -$B- -$C- -$D- -$E- -$F- -$G+ -$H+ -$I+ -$J+ -$K- -$L- -$M- -$N+ -$O+ -$P+ -$Q- -$R- -$S- -$T- -$U- -$V+ -$W- -$X+ -$Y- -$Z1 -B -H+ -W -JL -$M16384,1048576 -$K4194304 -CG -E"%IDE_OUT%" -N"%IDE_OUT%" -LE"%IDE_OUT%" -LN"%IDE_OUT%" -NO"%IDE_OUT%" -$C0 -NH"%IDE_OUT%" -NB"%IDE_OUT%" -Z  -U"%DELPHI_PATH%\Lib;%DELPHI_PATH%\Bin;%SOURCE_PATH%;%IDE_OUT%" -I"%DELPHI_PATH%\Lib;%SOURCE_PATH%;%IDE_OUT%" -D%CONDITION%  TsiLang_2010r.dpk

"%DELPHI_PATH%\Bin\dcc32.exe"  -$A8 -$B- -$C- -$D- -$E- -$F- -$G+ -$H+ -$I+ -$J+ -$K- -$L- -$M- -$N+ -$O+ -$P+ -$Q- -$R- -$S- -$T- -$U- -$V+ -$W- -$X+ -$Y- -$Z1 -B -H+ -W -JL -$M16384,1048576 -$K4194304 -CG -E"%IDE_OUT%" -N"%IDE_OUT%" -LE"%IDE_OUT%" -LN"%IDE_OUT%" -NO"%IDE_OUT%" -$C0 -NH"%IDE_OUT%" -NB"%IDE_OUT%" -Z  -U"%DELPHI_PATH%\Lib;%DELPHI_PATH%\Bin;%SOURCE_PATH%;%IDE_OUT%" -I"%DELPHI_PATH%\Lib;%SOURCE_PATH%;%IDE_OUT%" -D%CONDITION%  TsiLang_2010.dpk
where %% values are macros.

Posted: Thu Sep 17, 2009 11:59 am
by ix07
Thanks a lot. I will try that.