forked from OSchip/llvm-project
Provide a reasonable value for PATH_MAX if the lldb headers don't provide it.
This commit is contained in:
parent
5d45f758f0
commit
fa5a132767
|
@ -12,6 +12,10 @@
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
||||||
|
#if !defined(PATH_MAX)
|
||||||
|
#define PATH_MAX 4096
|
||||||
|
#endif
|
||||||
|
|
||||||
using namespace lldb;
|
using namespace lldb;
|
||||||
|
|
||||||
void test(SBDebugger &dbg, std::vector<std::string> args) {
|
void test(SBDebugger &dbg, std::vector<std::string> args) {
|
||||||
|
|
Loading…
Reference in New Issue