From 2c3714ee75f3e1fa19f496d4530effa996032d7f Mon Sep 17 00:00:00 2001 From: Jonghyun Park Date: Wed, 1 Feb 2017 13:19:55 +0900 Subject: [x86/Linux] Fix LLDB Plugin Build Error (#9239) --- src/ToolBox/SOS/lldbplugin/services.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/ToolBox') diff --git a/src/ToolBox/SOS/lldbplugin/services.cpp b/src/ToolBox/SOS/lldbplugin/services.cpp index 3b235bab88..e3eee4fc59 100644 --- a/src/ToolBox/SOS/lldbplugin/services.cpp +++ b/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 -- cgit v1.2.3