From 27124207afa517da564cdce557dd21654f1a9078 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Sat, 19 Sep 2020 21:20:31 -0400 Subject: Remove 32-bit ARM support. --- src/WixToolset.Core/Compiler.cs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'src/WixToolset.Core/Compiler.cs') 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 /// Gets or sets the platform which the compiler will use when defaulting 64-bit attributes and elements. /// /// The platform which the compiler will use when defaulting 64-bit attributes and elements. - public bool IsCurrentPlatform64Bit => this.Context.Platform == Platform.ARM64 || this.Context.Platform == Platform.IA64 || this.Context.Platform == Platform.X64; + public bool IsCurrentPlatform64Bit => this.Context.Platform == Platform.ARM64 || this.Context.Platform == Platform.X64; /// /// Gets or sets the option to show pedantic messages. @@ -5639,19 +5639,13 @@ namespace WixToolset.Core case "x64": procArch = "amd64"; break; - case "ia64": - procArch = "ia64"; - break; - case "arm": - procArch = "arm"; - break; case "arm64": procArch = "arm64"; break; case "": break; default: - this.Core.Write(ErrorMessages.IllegalAttributeValue(sourceLineNumbers, "File", "ProcessorArchitecture", procArchValue, "msil", "x86", "x64", "ia64")); + this.Core.Write(ErrorMessages.IllegalAttributeValue(sourceLineNumbers, "File", "ProcessorArchitecture", procArchValue, "msil", "x86", "x64")); break; } break; -- cgit v1.2.3-55-g6feb