Has any one used CrossKylix for real Cross-platform development?

前端 未结 3 2124
花落未央
花落未央 2021-02-15 01:47

New version of CrossKylix as been updated two weeks ago.

Even Kylix has discontinued long time ago, but it\'s seems still used by some of Delphi developers.

Has

3条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-02-15 02:19

    I'm using CrossKylix for years, and it worked for me like a charm. It's one of the reasons why I like to maintain Delphi 7 compatibility in our source code, because Kylix 3 is based on the same compiler as Delphi 7: only the back-end generates natively ELF files instead of EXE.

    For server applications and command-line tools, even a small cgi program, CrossKylix is just great! You can develop and test with Delphi under Windows, then Cross-compile it, and run the executable under Linux with no problem. I've used this for years on a french "dedibox" with runs under a Via C7 (now much faster Nano) CPU, and made AES and SHA encryption of the data in more than 1500 KB per second (yes KB per second, not bytes per second) thanks to the PadLock engine!

    I discovered some problems about the Kylix RTL and WideString under modern linux: if your Linux is configurated with UTF-8 encoding (which is now the standard for most distributions), WideString usage failed. So I've corrected this in the Kylix system.pas: in fact, our Enhanced RTL is cross-platform, and works with Delphi 7 and CrossKylix. See http://synopse.info/forum/viewtopic.php?id=66

提交回复
热议问题