是否有代码来检测64个平台,例如

if X86 then ...
if X64 then ...

最佳答案

是。

采用

if IsWin64 then
  // Do sth
else
  // Do sth else

还有一个Is64BitInstallMode函数。实际上,32位设置可以在64位OS上运行。因此,Is64BitInstallMode暗含IsWin64,但IsWin64不暗含Is64BitInstallMode

关于inno-setup - 如何通过脚本检测64位平台,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3618049/

10-09 09:36