]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/tools/lldb-mi/MICmnConfig.h
Update LLDB snapshot to upstream r225923 (git 2b588ecd)
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / tools / lldb-mi / MICmnConfig.h
1 //===-- MICmnConfig.h -------------------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 //++
11 // File:        MICmnConfig.h
12 //
13 // Overview:    Common defines to guide feature inclusion at compile time.
14 //
15 //
16 // Environment: Compilers:  Visual C++ 12.
17 //                          gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1
18 //              Libraries:  See MIReadmetxt.
19 //
20 // Copyright:   None.
21 //--
22 #pragma once
23
24 // 1 = Yes compile MI Driver version, 0 = compile original LLDB driver code only.
25 // 0 was mainly just for testing purposes and so may be removed at a later time.
26 #define MICONFIG_COMPILE_MIDRIVER_VERSION 1
27
28 // 1 = Show debug process attach modal dialog, 0 = do not show
29 // For windows only ATM, other OS's code is an infinite loop which a debugger must change a value to continue
30 #define MICONFIG_DEBUG_SHOW_ATTACH_DBG_DLG 0
31
32 // 1 = Compile in and init LLDB driver code alongside MI version, 0 = do not compile in
33 #define MICONFIG_COMPILE_MIDRIVER_WITH_LLDBDRIVER 1
34
35 // 1 = Give runtime our own custom buffer, 0 = Use runtime managed buffer
36 #define MICONFIG_CREATE_OWN_STDIN_BUFFER 0
37
38 // 1 = Use the MI driver regardless of --interpreter, 0 = require --interpreter argument
39 // This depends on MICONFIG_COMPILE_MIDRIVER_WITH_LLDBDRIVER
40 #define MICONFIG_DEFAULT_TO_MI_DRIVER 0
41
42 // 1 = Check for stdin before we issue blocking read, 0 = issue blocking call always
43 #define MICONFIG_POLL_FOR_STD_IN 1
44
45 // 1 = Write to MI's Log file warnings about commands that did not handle arguments or
46 // options present to them by the driver's client, 0 = no warnings given
47 #define MICONFIG_GIVE_WARNING_CMD_ARGS_NOT_HANDLED 1
48
49 // 1 = Enable MI Driver in MI mode to create a local debug session, 0 = Report "Not implemented"
50 #define MICONFIG_ENABLE_MI_DRIVER_MI_MODE_CMDLINE_ARG_EXECUTABLE_DEBUG_SESSION 0