Home | History | Annotate | Download | only in Config
      1 //===- Config.h.in --------------------------------------------------------===//
      2 //
      3 //                     The MCLinker Project
      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 // Hand-coded for Android build
     12 //===----------------------------------------------------------------------===//
     13 
     14 #ifndef MCLD_CONFIG_H
     15 #define MCLD_CONFIG_H
     16 
     17 #include <llvm/Config/llvm-config.h>
     18 
     19 #ifdef LLVM_ON_UNIX
     20 # define MCLD_ON_UNIX 1
     21 #else
     22 // Assume on Win32 otherwise.
     23 # define MCLD_ON_WIN32 1
     24 #endif
     25 
     26 #define MCLD_VERSION "Phoenix - 1.4.0"
     27 
     28 #endif
     29 
     30