从 32 位 [Delphi 7] 迁移到 64 位
可能的重复:
如何准备迁移到 Delphi 2010 和 Unicode 时适用于 64 位
应该如何我为最终的 64 位编译器准备了 32 位 Delphi 程序?
我想知道从 32 位 [Delphi 7] 迁移到 64 位的方法 少量。我应该记住哪些事情以及我应该遵循哪些步骤?
我可能会面临哪些复杂的情况?
请向我提供逐步的迁移过程。我应该首先解决哪些问题?
有2种可能 1.使用yet启动Delphi 64位版本 2. 更新现有代码和功能以使用 64 位操作系统功能
Possible Duplicates:
How to also prepare for 64-bits when migrating to Delphi 2010 and Unicode
How should I prepare my 32-bit Delphi programs for an eventual 64-bit compiler?
I would like to know the approach for migrating from 32 bit [Delphi 7] to 64 bit. What all things i should remember and what all steps i should follow?
What all complexity i might face?
please provide me step by step migration process. What things i should address first?
There are 2 possibilities
1. Using yet to launch Delphi 64 bit version
2. Updating existing code and functionality to use 64 bit OS features
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前还没有 64 位 Delphi 编译器。所以你现在不能这样做,你必须等到下一个Delphi版本。下一个 Delphi 发布了 64 位编译器。您不能通过 32 位编译器“使用”64 位操作系统功能(它们是什么?您到底是什么意思?)。 32 位应用程序将始终在 WOW3264 仿真器中运行(当然,在 64 位 Windows 上)。
There is no 64-Bit Delphi-Compiler at this time. So you can not do it now, you have to wait until the next Delphi-Version. For the next Delphi a 64-Bit compiler is announced. You can not "use" 64-Bit-OS-Features (What are they? What do you mean exactly?) with 32-Bit compiler. A 32-Bit-application will allways run in the WOW3264-Emulator (on a 64-Bit Windows, of course).
正如 Andreas 所说,目前还没有 64 位 Delphi 编译器 ATM。您现在可以使用 FPC,关于复杂性,Lazarus/FPC wiki 已解决这些问题。
As stated by Andreas, there's no yet 64-bit Delphi compiler ATM. You can use FPC for now, and regarding the complexities, Lazarus/FPC wiki has addressed them.