mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
This updates llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp to llvm-project main llvmorg-18-init-18359-g93248729cfae, the last commit before the upstream release/18.x branch was created. PR: 276104 MFC after: 1 month (cherry picked from commit 7a6dacaca14b62ca4b74406814becb87a3fefac0)
60 lines
1.2 KiB
C++
60 lines
1.2 KiB
C++
//===-- 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
|
|
|
|
#define LLDB_EDITLINE_USE_WCHAR 1
|
|
|
|
#define LLDB_HAVE_EL_RFUNC_T 1
|
|
|
|
#define HAVE_SYS_EVENT_H 1
|
|
|
|
#define HAVE_PPOLL 1
|
|
|
|
#define HAVE_PTSNAME_R 1
|
|
|
|
#define HAVE_PROCESS_VM_READV 0
|
|
|
|
#define HAVE_NR_PROCESS_VM_READV 0
|
|
|
|
#ifndef HAVE_LIBCOMPRESSION
|
|
/* #undef HAVE_LIBCOMPRESSION */
|
|
#endif
|
|
|
|
#define LLDB_ENABLE_POSIX 1
|
|
|
|
#define LLDB_ENABLE_TERMIOS 1
|
|
|
|
#define LLDB_ENABLE_LZMA 1
|
|
|
|
#define LLDB_ENABLE_CURSES 1
|
|
|
|
#define CURSES_HAVE_NCURSES_CURSES_H 0
|
|
|
|
#define LLDB_ENABLE_LIBEDIT 1
|
|
|
|
#define LLDB_ENABLE_LIBXML2 0
|
|
|
|
#define LLDB_ENABLE_LUA 1
|
|
|
|
#define LLDB_ENABLE_PYTHON 0
|
|
|
|
#define LLDB_ENABLE_FBSDVMCORE 0
|
|
|
|
#define LLDB_EMBED_PYTHON_HOME 0
|
|
|
|
/* #undef LLDB_PYTHON_HOME */
|
|
|
|
#define LLDB_INSTALL_LIBDIR_BASENAME "lib"
|
|
|
|
/* #undef LLDB_GLOBAL_INIT_DIRECTORY */
|
|
|
|
#define LLDB_BUG_REPORT_URL "https://bugs.freebsd.org/submit/"
|
|
|
|
#endif // #ifndef LLDB_HOST_CONFIG_H
|