Config.h revision 360658
1// $FreeBSD: stable/11/lib/clang/include/lldb/Host/Config.h 360658 2020-05-05 12:59:04Z dim $
2//===-- Config.h -----------------------------------------------*- C++ -*-===//
3//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
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 1
16
17#define LLDB_HAVE_EL_RFUNC_T 1
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#ifndef HAVE_LIBCOMPRESSION
34/* #undef HAVE_LIBCOMPRESSION */
35#endif
36
37#endif // #ifndef LLDB_HOST_CONFIG_H
38