diff options
Diffstat (limited to 'contrib/llvm-project/lldb/include/lldb/Host/Config.h.cmake')
-rw-r--r-- | contrib/llvm-project/lldb/include/lldb/Host/Config.h.cmake | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/contrib/llvm-project/lldb/include/lldb/Host/Config.h.cmake b/contrib/llvm-project/lldb/include/lldb/Host/Config.h.cmake new file mode 100644 index 000000000000..b8fb9e9de868 --- /dev/null +++ b/contrib/llvm-project/lldb/include/lldb/Host/Config.h.cmake @@ -0,0 +1,36 @@ +//===-- Config.h -----------------------------------------------*- C++ -*-===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#ifndef LLDB_HOST_CONFIG_H +#define LLDB_HOST_CONFIG_H + +#cmakedefine LLDB_CONFIG_TERMIOS_SUPPORTED + +#cmakedefine01 LLDB_EDITLINE_USE_WCHAR + +#cmakedefine01 LLDB_HAVE_EL_RFUNC_T + +#cmakedefine LLDB_DISABLE_POSIX + +#define LLDB_LIBDIR_SUFFIX "${LLVM_LIBDIR_SUFFIX}" + +#cmakedefine01 HAVE_SYS_EVENT_H + +#cmakedefine01 HAVE_PPOLL + +#cmakedefine01 HAVE_SIGACTION + +#cmakedefine01 HAVE_PROCESS_VM_READV + +#cmakedefine01 HAVE_NR_PROCESS_VM_READV + +#ifndef HAVE_LIBCOMPRESSION +#cmakedefine HAVE_LIBCOMPRESSION +#endif + +#endif // #ifndef LLDB_HOST_CONFIG_H |