diff options
| author | Raphael Isemann <teemperor@gmail.com> | 2018-05-26 14:59:14 +0000 |
|---|---|---|
| committer | Raphael Isemann <teemperor@gmail.com> | 2018-05-26 14:59:14 +0000 |
| commit | 02d4ff44986c03c96198aea9bbb17d4b72a4fb9f (patch) | |
| tree | 145c774b4733c091779ffbd867ebf213e0788a8c /lldb/source/Plugins/DynamicLoader | |
| parent | 0efdcdfbfcf8a99a14549f28bc4bf1a2815b950d (diff) | |
| download | bcm5719-llvm-02d4ff44986c03c96198aea9bbb17d4b72a4fb9f.tar.gz bcm5719-llvm-02d4ff44986c03c96198aea9bbb17d4b72a4fb9f.zip | |
Add missing includes to some LLDB headers.
Summary: When compiling with modules, these missing includes cause the build to fail (as the header can't be compiled into a module).
Subscribers: ki.stfu, lldb-commits
Differential Revision: https://reviews.llvm.org/D47412
llvm-svn: 333345
Diffstat (limited to 'lldb/source/Plugins/DynamicLoader')
| -rw-r--r-- | lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h b/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h index 9e7129461f0..bdf6bae7519 100644 --- a/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h +++ b/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h @@ -11,8 +11,10 @@ #define liblldb_HexagonDYLDRendezvous_H_ // C Includes +#include <limits.h> // for PATH_MAX // C++ Includes #include <list> +#include <map> #include <string> // Other libraries and framework includes |

