ontop_combined_all_macho_gas.S 828 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
            Copyright Sergue E. Leontiev 2013.
   Distributed under the Boost Software License, Version 1.0.
      (See accompanying file LICENSE_1_0.txt or copy at
          http://www.boost.org/LICENSE_1_0.txt)
*/

// Stub file for universal binary

#if defined(__arm__) || defined(__aarch64__) || defined(_M_ARM)
    #if defined(__aarch64__)
        #include "make_arm64_aapcs_macho_gas.S"
    #else
        #include "make_arm_aapcs_macho_gas.S"
    #endif
#else
    #if defined(__i386__)
        #include "ontop_i386_sysv_macho_gas.S"
    #elif defined(__x86_64__)
        #include "ontop_x86_64_sysv_macho_gas.S"
    #elif defined(__ppc__)
        #include "ontop_ppc32_sysv_macho_gas.S"
    #elif defined(__ppc64__)
        #include "ontop_ppc64_sysv_macho_gas.S"
    #else
        #error "No arch's"
    #endif
#endif