]>
Commit | Line | Data |
---|---|---|
3e170ce0 | 1 | #!/bin/sh -xe |
6d2010ae A |
2 | # |
3 | # Copyright (c) 2010 Apple Inc. All rights reserved. | |
4 | # | |
5 | # @APPLE_OSREFERENCE_LICENSE_HEADER_START@ | |
6 | # | |
7 | # This file contains Original Code and/or Modifications of Original Code | |
8 | # as defined in and that are subject to the Apple Public Source License | |
9 | # Version 2.0 (the 'License'). You may not use this file except in | |
10 | # compliance with the License. The rights granted to you under the License | |
11 | # may not be used to create, or enable the creation or redistribution of, | |
12 | # unlawful or unlicensed copies of an Apple operating system, or to | |
13 | # circumvent, violate, or enable the circumvention or violation of, any | |
14 | # terms of an Apple operating system software license agreement. | |
15 | # | |
16 | # Please obtain a copy of the License at | |
17 | # http://www.opensource.apple.com/apsl/ and read it before using this file. | |
18 | # | |
19 | # The Original Code and all software distributed under the License are | |
20 | # distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
21 | # EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
22 | # INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
23 | # FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
24 | # Please see the License for the specific language governing rights and | |
25 | # limitations under the License. | |
26 | # | |
27 | # @APPLE_OSREFERENCE_LICENSE_HEADER_END@ | |
28 | # | |
29 | ||
30 | # build inside OBJROOT | |
31 | cd $OBJROOT | |
32 | ||
6d2010ae A |
33 | MIG=`xcrun -sdk "$SDKROOT" -find mig` |
34 | MIGCC=`xcrun -sdk "$SDKROOT" -find cc` | |
35 | export MIGCC | |
36 | MIG_DEFINES="-DLIBSYSCALL_INTERFACE" | |
3e170ce0 | 37 | MIG_HEADER_OBJ="$OBJROOT/mig_hdr/include/mach" |
fe8ab488 A |
38 | MIG_HEADER_DST="$BUILT_PRODUCTS_DIR/mig_hdr/include/mach" |
39 | MIG_PRIVATE_HEADER_DST="$BUILT_PRODUCTS_DIR/mig_hdr/local/include/mach" | |
40 | SERVER_HEADER_DST="$BUILT_PRODUCTS_DIR/mig_hdr/include/servers" | |
41 | MACH_HEADER_DST="$BUILT_PRODUCTS_DIR/mig_hdr/include/mach" | |
39236c6e | 42 | |
6d2010ae A |
43 | # from old Libsystem makefiles |
44 | MACHINE_ARCH=`echo $ARCHS | cut -d' ' -f 1` | |
fe8ab488 | 45 | if [[ ( "$MACHINE_ARCH" = "arm64" || "$MACHINE_ARCH" = "x86_64" || "$MACHINE_ARCH" = "x86_64h" ) && `echo $ARCHS | wc -w` -gt 1 ]] |
39236c6e A |
46 | then |
47 | # MACHINE_ARCH needs to be a 32-bit arch to generate vm_map_internal.h correctly. | |
48 | MACHINE_ARCH=`echo $ARCHS | cut -d' ' -f 2` | |
fe8ab488 A |
49 | if [[ ( "$MACHINE_ARCH" = "arm64" || "$MACHINE_ARCH" = "x86_64" || "$MACHINE_ARCH" = "x86_64h" ) && `echo $ARCHS | wc -w` -gt 1 ]] |
50 | then | |
51 | # MACHINE_ARCH needs to be a 32-bit arch to generate vm_map_internal.h correctly. | |
52 | MACHINE_ARCH=`echo $ARCHS | cut -d' ' -f 3` | |
53 | fi | |
39236c6e | 54 | fi |
6d2010ae | 55 | SRC="$SRCROOT/mach" |
fe8ab488 | 56 | MIG_INTERNAL_HEADER_DST="$BUILT_PRODUCTS_DIR/internal_hdr/include/mach" |
316670eb | 57 | MIG_PRIVATE_DEFS_INCFLAGS="-I${SDKROOT}/System/Library/Frameworks/System.framework/PrivateHeaders" |
3e170ce0 | 58 | FILTER_MIG="$SRCROOT/xcodescripts/filter_mig.awk" |
6d2010ae | 59 | |
39037602 A |
60 | ASROOT="" |
61 | if [ `whoami` = "root" ]; then | |
62 | ASROOT="-o 0" | |
63 | fi | |
64 | ||
6d2010ae A |
65 | MIGS="clock.defs |
66 | clock_priv.defs | |
67 | clock_reply.defs | |
68 | exc.defs | |
69 | host_priv.defs | |
70 | host_security.defs | |
6d2010ae | 71 | lock_set.defs |
6d2010ae | 72 | mach_host.defs |
316670eb | 73 | mach_port.defs |
fe8ab488 | 74 | mach_voucher.defs |
6d2010ae A |
75 | processor.defs |
76 | processor_set.defs | |
39236c6e A |
77 | task.defs |
78 | thread_act.defs | |
6d2010ae A |
79 | vm_map.defs" |
80 | ||
316670eb A |
81 | MIGS_PRIVATE="" |
82 | ||
83 | MIGS_DUAL_PUBLIC_PRIVATE="" | |
84 | ||
4bd07ac2 | 85 | if ( echo {iphone,tv,appletv,watch}{os,simulator} iphone{osnano,nanosimulator} | grep -wFq "$PLATFORM_NAME" ) |
316670eb A |
86 | then |
87 | MIGS_PRIVATE="mach_vm.defs" | |
88 | else | |
89 | MIGS+=" mach_vm.defs" | |
90 | fi | |
91 | ||
316670eb A |
92 | MIGS_INTERNAL="mach_port.defs |
93 | mach_vm.defs | |
fe8ab488 | 94 | thread_act.defs |
316670eb A |
95 | vm_map.defs" |
96 | ||
6d2010ae A |
97 | SERVER_HDRS="key_defs.h |
98 | ls_defs.h | |
99 | netname_defs.h | |
100 | nm_defs.h" | |
101 | ||
39236c6e A |
102 | MACH_HDRS="mach.h |
103 | mach_error.h | |
104 | mach_init.h | |
105 | mach_interface.h | |
106 | port_obj.h | |
107 | sync.h | |
fe8ab488 | 108 | vm_task.h |
4bd07ac2 A |
109 | vm_page_size.h |
110 | thread_state.h" | |
39236c6e | 111 | |
4bd07ac2 | 112 | MIG_FILTERS="watchos_prohibited_mig.txt tvos_prohibited_mig.txt" |
3e170ce0 | 113 | |
6d2010ae A |
114 | # install /usr/include/server headers |
115 | mkdir -p $SERVER_HEADER_DST | |
116 | for hdr in $SERVER_HDRS; do | |
39037602 | 117 | install $ASROOT -c -m 444 $SRC/servers/$hdr $SERVER_HEADER_DST |
6d2010ae A |
118 | done |
119 | ||
39236c6e A |
120 | # install /usr/include/mach headers |
121 | mkdir -p $MACH_HEADER_DST | |
122 | for hdr in $MACH_HDRS; do | |
39037602 | 123 | install $ASROOT -c -m 444 $SRC/mach/$hdr $MACH_HEADER_DST |
39236c6e A |
124 | done |
125 | ||
6d2010ae | 126 | # special case because we only have one to do here |
fe8ab488 | 127 | $MIG -novouchers -arch $MACHINE_ARCH -header "$SERVER_HEADER_DST/netname.h" $SRC/servers/netname.defs |
6d2010ae A |
128 | |
129 | # install /usr/include/mach mig headers | |
130 | ||
131 | mkdir -p $MIG_HEADER_DST | |
3e170ce0 | 132 | mkdir -p $MIG_HEADER_OBJ |
6d2010ae | 133 | |
316670eb | 134 | for mig in $MIGS $MIGS_DUAL_PUBLIC_PRIVATE; do |
6d2010ae | 135 | MIG_NAME=`basename $mig .defs` |
3e170ce0 A |
136 | $MIG -novouchers -arch $MACHINE_ARCH -cc $MIGCC -header "$MIG_HEADER_OBJ/$MIG_NAME.h" $MIG_DEFINES $SRC/$mig |
137 | for filter in $MIG_FILTERS; do | |
138 | $FILTER_MIG $SRC/$filter $MIG_HEADER_OBJ/$MIG_NAME.h > $MIG_HEADER_OBJ/$MIG_NAME.tmp.h | |
139 | mv $MIG_HEADER_OBJ/$MIG_NAME.tmp.h $MIG_HEADER_OBJ/$MIG_NAME.h | |
140 | done | |
39037602 | 141 | install $ASROOT -c -m 444 $MIG_HEADER_OBJ/$MIG_NAME.h $MIG_HEADER_DST/$MIG_NAME.h |
6d2010ae A |
142 | done |
143 | ||
316670eb A |
144 | mkdir -p $MIG_PRIVATE_HEADER_DST |
145 | ||
146 | for mig in $MIGS_PRIVATE $MIGS_DUAL_PUBLIC_PRIVATE; do | |
147 | MIG_NAME=`basename $mig .defs` | |
fe8ab488 | 148 | $MIG -novouchers -arch $MACHINE_ARCH -cc $MIGCC -header "$MIG_PRIVATE_HEADER_DST/$MIG_NAME.h" $MIG_DEFINES $MIG_PRIVATE_DEFS_INCFLAGS $SRC/$mig |
316670eb A |
149 | if [ ! -e "$MIG_HEADER_DST/$MIG_NAME.h" ]; then |
150 | echo "#error $MIG_NAME.h unsupported." > "$MIG_HEADER_DST/$MIG_NAME.h" | |
151 | fi | |
152 | done | |
153 | ||
154 | ||
155 | # special headers used just for building Libsyscall | |
156 | # Note: not including -DLIBSYSCALL_INTERFACE to mig so we'll get the proper | |
157 | # 'internal' version of the headers being built | |
158 | ||
159 | mkdir -p $MIG_INTERNAL_HEADER_DST | |
160 | ||
161 | for mig in $MIGS_INTERNAL; do | |
162 | MIG_NAME=`basename $mig .defs` | |
fe8ab488 | 163 | $MIG -novouchers -arch $MACHINE_ARCH -cc $MIGCC -header "$MIG_INTERNAL_HEADER_DST/${MIG_NAME}_internal.h" $SRC/$mig |
316670eb A |
164 | done |
165 |