File: make_combined_sysv_macho_gas.S

package info (click to toggle)
php8.4 8.4.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208,108 kB
  • sloc: ansic: 1,060,628; php: 35,345; sh: 11,866; cpp: 7,201; pascal: 4,913; javascript: 3,091; asm: 2,810; yacc: 2,411; makefile: 689; xml: 446; python: 301; awk: 148
file content (24 lines) | stat: -rw-r--r-- 693 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
            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(__i386__)
    #include "make_i386_sysv_macho_gas.S"
#elif defined(__x86_64__)
    #include "make_x86_64_sysv_macho_gas.S"
#elif defined(__ppc__)
    #include "make_ppc32_sysv_macho_gas.S"
#elif defined(__ppc64__)
    #include "make_ppc64_sysv_macho_gas.S"
#elif defined(__arm__)
    #include "make_arm_aapcs_macho_gas.S"
#elif defined(__arm64__)
    #include "make_arm64_aapcs_macho_gas.S"
#else
    #error "No arch's"
#endif