1 //===-- Config.h -----------------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef LLDB_HOST_CONFIG_H 11 #define LLDB_HOST_CONFIG_H 12 13 #define LLDB_CONFIG_TERMIOS_SUPPORTED 14 15 #define LLDB_EDITLINE_USE_WCHAR 0 16 17 #define LLDB_HAVE_EL_RFUNC_T 0 18 19 /* #undef LLDB_DISABLE_POSIX */ 20 21 #define LLDB_LIBDIR_SUFFIX "" 22 23 #define HAVE_SYS_EVENT_H 1 24 25 #define HAVE_PPOLL 1 26 27 #define HAVE_SIGACTION 1 28 29 #define HAVE_PROCESS_VM_READV 0 30 31 #define HAVE_NR_PROCESS_VM_READV 0 32 33 /* #undef HAVE_LIBCOMPRESSION */ 34 35 #endif // #ifndef LLDB_HOST_CONFIG_H 36