Config.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. #ifndef LLDB_HOST_CONFIG_H
  9. #define LLDB_HOST_CONFIG_H
  10. #define LLDB_EDITLINE_USE_WCHAR 1
  11. #define LLDB_HAVE_EL_RFUNC_T 1
  12. #define HAVE_SYS_TYPES_H 1
  13. #define HAVE_SYS_EVENT_H 0
  14. #define HAVE_PPOLL 1
  15. #define HAVE_PTSNAME_R 1
  16. #define HAVE_SIGACTION 1
  17. #define HAVE_PROCESS_VM_READV 1
  18. #define HAVE_NR_PROCESS_VM_READV 1
  19. #ifndef HAVE_LIBCOMPRESSION
  20. /* #undef HAVE_LIBCOMPRESSION */
  21. #endif
  22. #define LLDB_ENABLE_POSIX 1
  23. #define LLDB_ENABLE_TERMIOS 1
  24. #define LLDB_ENABLE_LZMA 1
  25. #define LLDB_ENABLE_CURSES 1
  26. #define CURSES_HAVE_NCURSES_CURSES_H 0
  27. #define LLDB_ENABLE_LIBEDIT 1
  28. #define LLDB_ENABLE_LIBXML2 1
  29. #define LLDB_ENABLE_LUA 0
  30. #define LLDB_ENABLE_PYTHON 1
  31. #define LLDB_EMBED_PYTHON_HOME 0
  32. /* #undef LLDB_PYTHON_HOME */
  33. #define LLDB_LIBDIR_SUFFIX "64"
  34. #endif // #ifndef LLDB_HOST_CONFIG_H