1254721Semaste//===-- Config.h -----------------------------------------------*- C++ -*-===//
2254721Semaste//
3254721Semaste//                     The LLVM Compiler Infrastructure
4254721Semaste//
5254721Semaste// This file is distributed under the University of Illinois Open Source
6254721Semaste// License. See LICENSE.TXT for details.
7254721Semaste//
8254721Semaste//===----------------------------------------------------------------------===//
9254721Semaste
10254721Semaste//----------------------------------------------------------------------
11254721Semaste// LLDB currently doesn't have a dynamic configuration mechanism, so we
12254721Semaste// are going to hardcode things for now. Eventually these files will
13254721Semaste// be auto generated by some configuration script that can detect
14254721Semaste// platform functionality availability.
15254721Semaste//----------------------------------------------------------------------
16254721Semaste
17254721Semaste#ifndef liblldb_Platform_Config_h_
18254721Semaste#define liblldb_Platform_Config_h_
19254721Semaste
20254721Semaste#define LLDB_CONFIG_TERMIOS_SUPPORTED 1
21254721Semaste
22254721Semaste#define LLDB_CONFIG_TILDE_RESOLVES_TO_USER 1
23254721Semaste
24254721Semaste//#define LLDB_CONFIG_DLOPEN_RTLD_FIRST_SUPPORTED 1
25254721Semaste
26254721Semaste//#define LLDB_CONFIG_FCNTL_GETPATH_SUPPORTED 1
27254721Semaste
28254721Semaste#endif // #ifndef liblldb_Platform_Config_h_
29