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/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 "RockBull - 2.0.0" 27 28 #define MCLD_REGION_CHUNK_SIZE 32 29 #define MCLD_NUM_OF_INPUTS 32 30 #define MCLD_SECTIONS_PER_INPUT 16 31 #define MCLD_SYMBOLS_PER_INPUT 128 32 #define MCLD_RELOCATIONS_PER_INPUT 1024 33 34 #endif 35 36