diff options
Diffstat (limited to 'src/WixToolset.Core/Compiler.cs')
-rw-r--r-- | src/WixToolset.Core/Compiler.cs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs index 7be581bc..286a598b 100644 --- a/src/WixToolset.Core/Compiler.cs +++ b/src/WixToolset.Core/Compiler.cs | |||
@@ -82,7 +82,7 @@ namespace WixToolset.Core | |||
82 | /// Gets or sets the platform which the compiler will use when defaulting 64-bit attributes and elements. | 82 | /// Gets or sets the platform which the compiler will use when defaulting 64-bit attributes and elements. |
83 | /// </summary> | 83 | /// </summary> |
84 | /// <value>The platform which the compiler will use when defaulting 64-bit attributes and elements.</value> | 84 | /// <value>The platform which the compiler will use when defaulting 64-bit attributes and elements.</value> |
85 | public bool IsCurrentPlatform64Bit => this.Context.Platform == Platform.ARM64 || this.Context.Platform == Platform.IA64 || this.Context.Platform == Platform.X64; | 85 | public bool IsCurrentPlatform64Bit => this.Context.Platform == Platform.ARM64 || this.Context.Platform == Platform.X64; |
86 | 86 | ||
87 | /// <summary> | 87 | /// <summary> |
88 | /// Gets or sets the option to show pedantic messages. | 88 | /// Gets or sets the option to show pedantic messages. |
@@ -5639,19 +5639,13 @@ namespace WixToolset.Core | |||
5639 | case "x64": | 5639 | case "x64": |
5640 | procArch = "amd64"; | 5640 | procArch = "amd64"; |
5641 | break; | 5641 | break; |
5642 | case "ia64": | ||
5643 | procArch = "ia64"; | ||
5644 | break; | ||
5645 | case "arm": | ||
5646 | procArch = "arm"; | ||
5647 | break; | ||
5648 | case "arm64": | 5642 | case "arm64": |
5649 | procArch = "arm64"; | 5643 | procArch = "arm64"; |
5650 | break; | 5644 | break; |
5651 | case "": | 5645 | case "": |
5652 | break; | 5646 | break; |
5653 | default: | 5647 | default: |
5654 | this.Core.Write(ErrorMessages.IllegalAttributeValue(sourceLineNumbers, "File", "ProcessorArchitecture", procArchValue, "msil", "x86", "x64", "ia64")); | 5648 | this.Core.Write(ErrorMessages.IllegalAttributeValue(sourceLineNumbers, "File", "ProcessorArchitecture", procArchValue, "msil", "x86", "x64")); |
5655 | break; | 5649 | break; |
5656 | } | 5650 | } |
5657 | break; | 5651 | break; |