forked from OSchip/llvm-project
Add missing headers.
Something changed in commit r129112 where a few standard headers vanished from the include chain when building on Linux. Fix up by including limits.h for INT_MAX and PATH_MAX where needed, and stdio.h for printf(). llvm-svn: 129130
This commit is contained in:
parent
466d0c1f93
commit
8acdbb8a75
|
@ -10,6 +10,8 @@
|
|||
#ifndef liblldb_StreamTee_h_
|
||||
#define liblldb_StreamTee_h_
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
#include "lldb/Core/Stream.h"
|
||||
#include "lldb/Host/Mutex.h"
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#ifndef liblldb_StringList_h_
|
||||
#define liblldb_StringList_h_
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "lldb/Core/STLUtils.h"
|
||||
#include "lldb/lldb-forward.h"
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
#include "lldb/API/SBFileSpec.h"
|
||||
#include "lldb/API/SBStream.h"
|
||||
#include "lldb/Host/FileSpec.h"
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
#include "lldb/API/SBLineEntry.h"
|
||||
#include "lldb/API/SBStream.h"
|
||||
#include "lldb/Core/StreamString.h"
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
|
||||
#include <errno.h>
|
||||
#include <fcntl.h>
|
||||
#include <limits.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/mman.h>
|
||||
|
||||
|
|
|
@ -9,6 +9,8 @@
|
|||
|
||||
#include "lldb/Core/PluginManager.h"
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
#include "lldb/Host/File.h"
|
||||
|
||||
#include <fcntl.h>
|
||||
#include <limits.h>
|
||||
#include <stdarg.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#include <dlfcn.h>
|
||||
#include <errno.h>
|
||||
#include <grp.h>
|
||||
#include <limits.h>
|
||||
#include <netdb.h>
|
||||
#include <pwd.h>
|
||||
#include <sys/types.h>
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#include "DWARFDebugAranges.h"
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
|
|
Loading…
Reference in New Issue