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 1 13 14 #define LLDB_HAVE_EL_RFUNC_T 1 15 16 #define HAVE_SYS_EVENT_H 1 17 18 #define HAVE_PPOLL 1 19 20 #define HAVE_PTSNAME_R 1 21 22 #define HAVE_PROCESS_VM_READV 0 23 24 #define HAVE_NR_PROCESS_VM_READV 0 25 26 #ifndef HAVE_LIBCOMPRESSION 27 /* #undef HAVE_LIBCOMPRESSION */ 28 #endif 29 30 #define LLDB_ENABLE_POSIX 1 31 32 #define LLDB_ENABLE_TERMIOS 1 33 34 #define LLDB_ENABLE_LZMA 1 35 36 #define LLDB_ENABLE_CURSES 1 37 38 #define CURSES_HAVE_NCURSES_CURSES_H 0 39 40 #define LLDB_ENABLE_LIBEDIT 1 41 42 #define LLDB_ENABLE_LIBXML2 0 43 44 #define LLDB_ENABLE_LUA 1 45 46 #define LLDB_ENABLE_PYTHON 0 47 48 #define LLDB_ENABLE_FBSDVMCORE 0 49 50 #define LLDB_EMBED_PYTHON_HOME 0 51 52 /* #undef LLDB_PYTHON_HOME */ 53 54 #define LLDB_INSTALL_LIBDIR_BASENAME "lib" 55 56 /* #undef LLDB_GLOBAL_INIT_DIRECTORY */ 57 58 #endif // #ifndef LLDB_HOST_CONFIG_H 59