Package/@Platform
中,它说“不鼓励使用此属性;而是在candle.exe命令行指定-arch开关”,但是没有解释这个参数实际上做了什么(至少没有我能找到的).
“documentation” for the compiler完全值得“文档”这个词的空气引用,因为它基本上是一个存根(例如,与
linker documentation不同).对于历史记录,这里完全是编译器文档:
The Windows Installer XML compiler is exposed by candle.exe. Candle is
responsible for preprocessing the input .wxs files into valid
well-formed XML documents against the WiX schema,wix.xsd. Then,each
post-processed source file is compiled into a .wixobj file.The compilation process is relatively straight forward. The WiX schema
lends itself to a simple recursive descent parser. The compiler
processes each element in turn creating new symbols,calculating the
necessary references and generating the raw data for the .wixobj file.
命令行帮助提供了一点,但还不够.
-arch set architecture defaults for package,components,etc. values: x86,x64,or ia64 (default: x86)
在一个相关的问题,Platform identification in WiX 3.0,有关于可能发生的事情的one answer with a sliver of hint,但这还不够,我不知道它是否准确.
> -arch参数与设置Package / @ Platform属性具有相同的效果,还是更多?
>论证是否影响preprocessor中的任何可用内容?特别是,它是否设置了PLATFORM预处理器变量?它还有其他什么吗?
>什么是架构“默认”?显式Package / @ Platform属性是否覆盖命令行?或相反亦然?或者(更好的是)如果存在不一致的平台声明会出现错误吗?
其中一些问题的答案看起来应该是显而易见的,事实上我只是在写这个问题时学到了一些东西.但我想要一个明确的答案,最好(提示)指向蜡烛命令行的更新和准确的文档页面的链接.我确实希望在任何人回答的时候已经解决了这个问题,但是,我会尽快拯救其他人,因为我会花时间来解决这个问题.
另一个相关问题WIX: is the Platform attribute of the Package element truly deprecated?讨论了Package / @ Platform属性,但未解决命令行参数.
关于该PLATFORM预处理器变量.它现在显然是BUILDARCH,尽管你很难从文档中了解它.
warning CNDL1034 : The built-in preprocessor variable '$(sys.PLATFORM)' is deprecated. Please correct your authoring to use the new '$(sys.BUILDARCH)' preprocessor variable instead.
解决方法
<?if $(sys.BUILDARCH)="x86"?> <?define Minimum_Version="100"?> <?define Program_Files="ProgramFilesFolder"?> <?elseif $(sys.BUILDARCH)="x64"?> <?define Minimum_Version="200"?> <?define Program_Files="ProgramFiles64Folder"?> <?else?> <?error Unsupported value of sys.BUILDARCH=$(sys.BUILDARCH)?> <?endif?>
稍后在WiX源中使用这些定义.
<Package [...] InstallerVersion="$(var.Minimum_Version)" /> <Directory Id="$(var.Program_Files)"> [...] </Directory>