make_combined_sysv_macho_gas.S 559 B

1234567891011121314151617181920
  1. /*
  2. Copyright Sergue E. Leontiev 2013.
  3. Distributed under the Boost Software License, Version 1.0.
  4. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. // Stub file for universal binary
  8. #if defined(__i386__)
  9. #include "make_i386_sysv_macho_gas.S"
  10. #elif defined(__x86_64__)
  11. #include "make_x86_64_sysv_macho_gas.S"
  12. #elif defined(__ppc__)
  13. #include "make_ppc32_sysv_macho_gas.S"
  14. #elif defined(__ppc64__)
  15. #include "make_ppc64_sysv_macho_gas.S"
  16. #else
  17. #error "No arch's"
  18. #endif