Home | History | Annotate | Download | only in macosx
      1 //===-- Config.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 // LLDB currently doesn't have a dynamic configuration mechanism, so we
     12 // are going to hardcode things for now. Eventually these files will
     13 // be auto generated by some configuration script that can detect
     14 // platform functionality availability.
     15 //----------------------------------------------------------------------
     16 
     17 #ifndef liblldb_Platform_Config_h_
     18 #define liblldb_Platform_Config_h_
     19 
     20 #define LLDB_CONFIG_TERMIOS_SUPPORTED 1
     21 
     22 #define LLDB_CONFIG_TILDE_RESOLVES_TO_USER 1
     23 
     24 #define LLDB_CONFIG_DLOPEN_RTLD_FIRST_SUPPORTED 1
     25 
     26 #define LLDB_CONFIG_FCNTL_GETPATH_SUPPORTED 1
     27 
     28 #endif // #ifndef liblldb_Platform_Config_h_
     29