We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1084b5 commit af394eeCopy full SHA for af394ee
src/runtime/runtime.cs
@@ -239,9 +239,13 @@ public enum MachineType
239
/// </summary>
240
static readonly Dictionary<string, MachineType> MachineTypeMapping = new Dictionary<string, MachineType>()
241
{
242
- { "i386", MachineType.i386 },
243
- { "x86_64", MachineType.x86_64 },
244
- { "amd64", MachineType.x86_64 },
+ ["i386"] = MachineType.i386,
+ ["i686"] = MachineType.i386,
+ ["x86"] = MachineType.i386,
245
+ ["x86_64"] = MachineType.x86_64,
246
+ ["amd64"] = MachineType.x86_64,
247
+ ["x64"] = MachineType.x86_64,
248
+ ["em64t"] = MachineType.x86_64,
249
};
250
251
/// <summary>
0 commit comments