]>
git.saurik.com Git - apple/xnu.git/blob - bsd/sys/make_symbol_aliasing.sh
3 # Copyright (c) 2010 Apple Inc. All rights reserved.
5 # @APPLE_OSREFERENCE_LICENSE_HEADER_START@
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. Please obtain a copy of the License at
11 # http://www.opensource.apple.com/apsl/ and read it before using this
14 # The Original Code and all software distributed under the License are
15 # distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 # EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 # INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
19 # Please see the License for the specific language governing rights and
20 # limitations under the License.
22 # @APPLE_OSREFERENCE_LICENSE_HEADER_END@
26 echo "Usage: $0 <sdk> <output>" 1>&2
37 if [ ! -x "${SDKROOT}/usr/local/libexec/availability.pl" ] ; then
38 echo "Unable to locate ${SDKROOT}/usr/local/libexec/availability.pl (or not executable)" >&2
44 /* Copyright (c) 2010 Apple Inc. All rights reserved.
46 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
48 * This file contains Original Code and/or Modifications of Original Code
49 * as defined in and that are subject to the Apple Public Source License
50 * Version 2.0 (the 'License'). You may not use this file except in
51 * compliance with the License. The rights granted to you under the License
52 * may not be used to create, or enable the creation or redistribution of,
53 * unlawful or unlicensed copies of an Apple operating system, or to
54 * circumvent, violate, or enable the circumvention or violation of, any
55 * terms of an Apple operating system software license agreement.
57 * Please obtain a copy of the License at
58 * http://www.opensource.apple.com/apsl/ and read it before using this file.
60 * The Original Code and all software distributed under the License are
61 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
62 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
63 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
64 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
65 * Please see the License for the specific language governing rights and
66 * limitations under the License.
68 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
72 # error "Never use <sys/_symbol_aliasing.h> directly. Use <sys/cdefs.h> instead."
77 for ver
in $(${SDKROOT}/usr/local/libexec/availability.pl --ios) ; do
80 value
=$(printf "%d%02d00" ${ver_major} ${ver_minor})
81 str
=$(printf "__IPHONE_%d_%d" ${ver_major} ${ver_minor})
82 echo "#if defined(__ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_IPHONE_OS_VERSION_MIN_REQUIRED__ >= ${value}"
83 echo "#define __DARWIN_ALIAS_STARTING_IPHONE_${str}(x) x"
85 echo "#define __DARWIN_ALIAS_STARTING_IPHONE_${str}(x)"
90 for ver
in $(${SDKROOT}/usr/local/libexec/availability.pl --macosx) ; do
93 value
=$(printf "%d%d0" ${ver_major} ${ver_minor})
94 str
=$(printf "__MAC_%d_%d" ${ver_major} ${ver_minor})
95 echo "#if defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ >= ${value}"
96 echo "#define __DARWIN_ALIAS_STARTING_MAC_${str}(x) x"
98 echo "#define __DARWIN_ALIAS_STARTING_MAC_${str}(x)"