diff options
author | Greg Clayton <gclayton@apple.com> | 2012-09-04 14:55:50 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-09-04 14:55:50 +0000 |
commit | dcbfd19e88ddfa1b6e3944cba37bf1e59984ed46 (patch) | |
tree | 71eaefa0e1eb61cf024918a1867359c8912bf86a | |
parent | f2ce35fc30e57da0189d9af29c51cf86f8370065 (diff) | |
download | bcm5719-llvm-dcbfd19e88ddfa1b6e3944cba37bf1e59984ed46.tar.gz bcm5719-llvm-dcbfd19e88ddfa1b6e3944cba37bf1e59984ed46.zip |
Patch from info from Daniel Malea that should fix the build on linux after fixes committed with revision 162860.
llvm-svn: 163139
-rw-r--r-- | lldb/source/Breakpoint/BreakpointID.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Breakpoint/BreakpointID.cpp b/lldb/source/Breakpoint/BreakpointID.cpp index 6180e4d856b..9a59e29d007 100644 --- a/lldb/source/Breakpoint/BreakpointID.cpp +++ b/lldb/source/Breakpoint/BreakpointID.cpp @@ -9,6 +9,8 @@ // C Includes +#include <stdio.h> + // C++ Includes // Other libraries and framework includes // Project includes diff --git a/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp b/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp index fd1b0e0ebad..1c7bf6ae4e2 100644 --- a/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp +++ b/lldb/source/Plugins/Process/POSIX/ProcessPOSIX.cpp @@ -12,6 +12,7 @@ // C++ Includes // Other libraries and framework includes +#include "lldb/Core/Module.h" #include "lldb/Core/PluginManager.h" #include "lldb/Core/State.h" #include "lldb/Host/Host.h" |