1 //===-- Config.h -----------------------------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #ifndef LLDB_HOST_CONFIG_H 10 #define LLDB_HOST_CONFIG_H 11 12 #define LLDB_EDITLINE_USE_WCHAR 0 13 14 #define LLDB_HAVE_EL_RFUNC_T 0 15 16 #define HAVE_SYS_TYPES_H 1 17 18 #define HAVE_SYS_EVENT_H 1 19 20 #define HAVE_PPOLL 1 21 22 #define HAVE_SIGACTION 1 23 24 #define HAVE_PROCESS_VM_READV 0 25 26 #define HAVE_NR_PROCESS_VM_READV 0 27 28 /* #undef HAVE_LIBCOMPRESSION */ 29 30 #define LLDB_ENABLE_POSIX 1 31 32 #define LLDB_ENABLE_TERMIOS 1 33 34 #define LLDB_ENABLE_LZMA 0 35 36 #define LLDB_ENABLE_CURSES 0 37 38 #define LLDB_ENABLE_LIBEDIT 0 39 40 #define LLDB_ENABLE_LIBXML2 0 41 42 #define LLDB_ENABLE_LUA 0 43 44 #define LLDB_ENABLE_PYTHON 0 45 46 #define LLDB_PYTHON_HOME "" 47 48 #define LLDB_LIBDIR_SUFFIX "" 49 50 #endif // #ifndef LLDB_HOST_CONFIG_H 51