From: Jonghyun Park Date: Wed, 1 Feb 2017 04:19:55 +0000 (+0900) Subject: [x86/Linux] Fix LLDB Plugin Build Error (dotnet/coreclr#9239) X-Git-Tag: submit/tizen/20210909.063632~11030^2~8258 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a8e467a55a2ca1e43817221a04a09c711e530a19;p=platform%2Fupstream%2Fdotnet%2Fruntime.git [x86/Linux] Fix LLDB Plugin Build Error (dotnet/coreclr#9239) Commit migrated from https://github.com/dotnet/coreclr/commit/2c3714ee75f3e1fa19f496d4530effa996032d7f --- diff --git a/src/coreclr/src/ToolBox/SOS/lldbplugin/services.cpp b/src/coreclr/src/ToolBox/SOS/lldbplugin/services.cpp index 3b235ba..e3eee4f 100644 --- a/src/coreclr/src/ToolBox/SOS/lldbplugin/services.cpp +++ b/src/coreclr/src/ToolBox/SOS/lldbplugin/services.cpp @@ -413,6 +413,8 @@ LLDBServices::GetExecutingProcessorType( *type = IMAGE_FILE_MACHINE_ARMNT; #elif DBG_TARGET_ARM64 *type = IMAGE_FILE_MACHINE_ARM64; +#elif DBG_TARGET_X86 + *type = IMAGE_FILE_MACHINE_I386; #else #error "Unsupported target" #endif