diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-12-09 12:51:21 -0600 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-12-09 13:33:18 -0600 |
commit | b9ba35486245a65cd8e376cc7a808f6fa7d41682 (patch) | |
tree | 93304a7be837c3c6ec32c46a7d04ecf580e67407 /src/wixext | |
parent | 70e370b4494a87cbbe234130882cad4a1021f82a (diff) | |
download | wix-b9ba35486245a65cd8e376cc7a808f6fa7d41682.tar.gz wix-b9ba35486245a65cd8e376cc7a808f6fa7d41682.tar.bz2 wix-b9ba35486245a65cd8e376cc7a808f6fa7d41682.zip |
WIXFEAT:6209 - Add x64 and ARM64 versions of built-in BAs.
Diffstat (limited to 'src/wixext')
-rw-r--r-- | src/wixext/BalCompiler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wixext/BalCompiler.cs b/src/wixext/BalCompiler.cs index 1629a670..c01905cc 100644 --- a/src/wixext/BalCompiler.cs +++ b/src/wixext/BalCompiler.cs | |||
@@ -918,7 +918,7 @@ namespace WixToolset.Bal | |||
918 | 918 | ||
919 | private void CreateBARef(IntermediateSection section, SourceLineNumber sourceLineNumbers, XElement node, string name) | 919 | private void CreateBARef(IntermediateSection section, SourceLineNumber sourceLineNumbers, XElement node, string name) |
920 | { | 920 | { |
921 | var id = this.ParseHelper.CreateIdentifierValueFromPlatform(name, this.Context.Platform, BurnPlatforms.X86); | 921 | var id = this.ParseHelper.CreateIdentifierValueFromPlatform(name, this.Context.Platform, BurnPlatforms.X86 | BurnPlatforms.X64 | BurnPlatforms.ARM64); |
922 | if (id == null) | 922 | if (id == null) |
923 | { | 923 | { |
924 | this.Messaging.Write(ErrorMessages.UnsupportedPlatformForElement(sourceLineNumbers, this.Context.Platform.ToString(), node.Name.LocalName)); | 924 | this.Messaging.Write(ErrorMessages.UnsupportedPlatformForElement(sourceLineNumbers, this.Context.Platform.ToString(), node.Name.LocalName)); |