]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/context/src/asm/make_combined_sysv_macho_gas.S
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / context / src / asm / make_combined_sysv_macho_gas.S
CommitLineData
7c673cae
FG
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
8// Stub file for universal binary
9
10#if defined(__i386__)
11 #include "make_i386_sysv_macho_gas.S"
12#elif defined(__x86_64__)
13 #include "make_x86_64_sysv_macho_gas.S"
14#elif defined(__ppc__)
15 #include "make_ppc32_sysv_macho_gas.S"
16#elif defined(__ppc64__)
17 #include "make_ppc64_sysv_macho_gas.S"
1e59de90
TL
18#elif defined(__arm__)
19 #include "make_arm_aapcs_macho_gas.S"
20#elif defined(__arm64__)
21 #include "make_arm64_aapcs_macho_gas.S"
7c673cae
FG
22#else
23 #error "No arch's"
24#endif