| 1 | # Copyright 1999-2004 Gentoo Foundation |
1 | # Copyright 1999-2011 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.13 2005/01/17 04:20:55 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/multilib.eclass,v 1.85 2011/03/16 20:09:10 vapier Exp $ |
| 4 | # |
4 | |
| 5 | # Author: Jeremy Huddleston <eradicator@gentoo.org> |
5 | # @ECLASS: multilib.eclass |
| 6 | # |
6 | # @MAINTAINER: |
|
|
7 | # amd64@gentoo.org |
|
|
8 | # toolchain@gentoo.org |
|
|
9 | # @BLURB: This eclass is for all functions pertaining to handling multilib configurations. |
|
|
10 | # @DESCRIPTION: |
| 7 | # This eclass is for all functions pertaining to handling multilib. |
11 | # This eclass is for all functions pertaining to handling multilib configurations. |
| 8 | # configurations. |
|
|
| 9 | |
12 | |
| 10 | ECLASS=multilib |
13 | ___ECLASS_RECUR_MULTILIB="yes" |
| 11 | INHERITED="$INHERITED $ECLASS" |
14 | [[ -z ${___ECLASS_RECUR_TOOLCHAIN_FUNCS} ]] && inherit toolchain-funcs |
| 12 | |
15 | |
| 13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
16 | # Defaults: |
|
|
17 | export MULTILIB_ABIS=${MULTILIB_ABIS:-"default"} |
|
|
18 | export DEFAULT_ABI=${DEFAULT_ABI:-"default"} |
|
|
19 | export CFLAGS_default |
|
|
20 | export LDFLAGS_default |
|
|
21 | export CHOST_default=${CHOST_default:-${CHOST}} |
|
|
22 | export CTARGET_default=${CTARGET_default:-${CTARGET:-${CHOST_default}}} |
|
|
23 | export LIBDIR_default=${CONF_LIBDIR:-"lib"} |
|
|
24 | export CDEFINE_default="__unix__" |
|
|
25 | export KERNEL_ABI=${KERNEL_ABI:-${DEFAULT_ABI}} |
| 14 | |
26 | |
|
|
27 | # @FUNCTION: has_multilib_profile |
|
|
28 | # @DESCRIPTION: |
|
|
29 | # Return true if the current profile is a multilib profile and lists more than |
|
|
30 | # one abi in ${MULTILIB_ABIS}. When has_multilib_profile returns true, that |
|
|
31 | # profile should enable the 'multilib' use flag. This is so you can DEPEND on |
|
|
32 | # a package only for multilib or not multilib. |
|
|
33 | has_multilib_profile() { |
|
|
34 | [ -n "${MULTILIB_ABIS}" -a "${MULTILIB_ABIS}" != "${MULTILIB_ABIS/ /}" ] |
|
|
35 | } |
|
|
36 | |
|
|
37 | # @FUNCTION: get_libdir |
|
|
38 | # @RETURN: the libdir for the selected ABI |
|
|
39 | # @DESCRIPTION: |
| 15 | # This function simply returns the desired lib directory. With portage |
40 | # This function simply returns the desired lib directory. With portage |
| 16 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
41 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
| 17 | # to accomidate the needs of multilib systems. It's no longer a good idea |
42 | # to accomidate the needs of multilib systems. It's no longer a good idea |
| 18 | # to assume all libraries will end up in lib. Replace any (sane) instances |
43 | # to assume all libraries will end up in lib. Replace any (sane) instances |
| 19 | # where lib is named directly with $(get_libdir) if possible. |
44 | # where lib is named directly with $(get_libdir) if possible. |
| 20 | # |
|
|
| 21 | # Travis Tilley <lv@gentoo.org> (24 Aug 2004) |
|
|
| 22 | # |
45 | # |
| 23 | # Jeremy Huddleston <eradicator@gentoo.org> (23 Dec 2004): |
46 | # Jeremy Huddleston <eradicator@gentoo.org> (23 Dec 2004): |
| 24 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
47 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
| 25 | # fall back on old behavior. Any profile that has these set should also |
48 | # fall back on old behavior. Any profile that has these set should also |
| 26 | # depend on a newer version of portage (not yet released) which uses these |
49 | # depend on a newer version of portage (not yet released) which uses these |
| 27 | # over CONF_LIBDIR in econf, dolib, etc... |
50 | # over CONF_LIBDIR in econf, dolib, etc... |
| 28 | get_libdir() { |
51 | get_libdir() { |
| 29 | LIBDIR_TEST=$(type econf) |
52 | local CONF_LIBDIR |
| 30 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
53 | if [ -n "${CONF_LIBDIR_OVERRIDE}" ] ; then |
| 31 | # if there is an override, we want to use that... always. |
54 | # if there is an override, we want to use that... always. |
| 32 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
55 | echo ${CONF_LIBDIR_OVERRIDE} |
| 33 | elif [ -n "$(get_abi_LIBDIR)" ]; then |
56 | else |
| 34 | CONF_LIBDIR="$(get_abi_LIBDIR)" |
57 | get_abi_LIBDIR |
| 35 | elif [ "${LIBDIR_TEST/CONF_LIBDIR}" == "${LIBDIR_TEST}" ]; then # we don't have CONF_LIBDIR support |
|
|
| 36 | # will be <portage-2.0.51_pre20 |
|
|
| 37 | CONF_LIBDIR="lib" |
|
|
| 38 | fi |
58 | fi |
| 39 | # and of course, default to lib if CONF_LIBDIR isnt set |
|
|
| 40 | echo ${CONF_LIBDIR:=lib} |
|
|
| 41 | unset LIBDIR_TEST |
|
|
| 42 | } |
59 | } |
| 43 | |
60 | |
|
|
61 | # @FUNCTION: get_multilibdir |
|
|
62 | # @RETURN: Returns the multilibdir |
| 44 | get_multilibdir() { |
63 | get_multilibdir() { |
| 45 | if [ -n "$(get_abi_LIBDIR)" ]; then |
64 | if has_multilib_profile; then |
| 46 | eerror "get_multilibdir called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
65 | eerror "get_multilibdir called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
| 47 | exit 1 |
66 | exit 1 |
| 48 | fi |
67 | fi |
| 49 | echo ${CONF_MULTILIBDIR:=lib32} |
68 | echo ${CONF_MULTILIBDIR:=lib32} |
| 50 | } |
69 | } |
| 51 | |
70 | |
|
|
71 | # @FUNCTION: get_libdir_override |
|
|
72 | # @DESCRIPTION: |
| 52 | # Sometimes you need to override the value returned by get_libdir. A good |
73 | # Sometimes you need to override the value returned by get_libdir. A good |
| 53 | # example of this is xorg-x11, where lib32 isnt a supported configuration, |
74 | # example of this is xorg-x11, where lib32 isnt a supported configuration, |
| 54 | # and where lib64 -must- be used on amd64 (for applications that need lib |
75 | # and where lib64 -must- be used on amd64 (for applications that need lib |
| 55 | # to be 32bit, such as adobe acrobat). Note that this override also bypasses |
76 | # to be 32bit, such as adobe acrobat). Note that this override also bypasses |
| 56 | # portage version sanity checking. |
77 | # portage version sanity checking. |
| 57 | # get_libdir_override expects one argument, the result get_libdir should |
78 | # get_libdir_override expects one argument, the result get_libdir should |
| 58 | # return: |
79 | # return: |
| 59 | # |
80 | # |
| 60 | # get_libdir_override lib64 |
81 | # get_libdir_override lib64 |
| 61 | # |
|
|
| 62 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
|
|
| 63 | get_libdir_override() { |
82 | get_libdir_override() { |
| 64 | if [ -n "$(get_abi_LIBDIR)" ]; then |
83 | if has_multilib_profile; then |
| 65 | eerror "get_libdir_override called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
84 | eerror "get_libdir_override called, but it shouldn't be needed with the new multilib approach. Please file a bug at http://bugs.gentoo.org and assign it to eradicator@gentoo.org" |
| 66 | exit 1 |
85 | exit 1 |
| 67 | fi |
86 | fi |
| 68 | CONF_LIBDIR="$1" |
87 | CONF_LIBDIR="$1" |
| 69 | CONF_LIBDIR_OVERRIDE="$1" |
88 | CONF_LIBDIR_OVERRIDE="$1" |
|
|
89 | LIBDIR_default="$1" |
| 70 | } |
90 | } |
| 71 | |
91 | |
| 72 | # get_abi_var <VAR> [<ABI>] |
92 | # @FUNCTION: get_abi_var |
|
|
93 | # @USAGE: <VAR> [ABI] |
| 73 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
94 | # @RETURN: returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
| 74 | # |
95 | # @DESCRIPTION: |
| 75 | # ex: |
96 | # ex: |
| 76 | # CFLAGS=$(get_abi_var CFLAGS sparc32) # CFLAGS=-m32 |
97 | # CFLAGS=$(get_abi_var CFLAGS sparc32) # CFLAGS=-m32 |
| 77 | # |
98 | # |
| 78 | # Note that the prefered method is to set CC="$(tc-getCC) $(get_abi_CFLAGS)" |
99 | # Note that the prefered method is to set CC="$(tc-getCC) $(get_abi_CFLAGS)" |
| 79 | # This will hopefully be added to portage soon... |
100 | # This will hopefully be added to portage soon... |
| 80 | # |
101 | # |
| 81 | # If <ABI> is not specified, ${ABI} is used. |
102 | # If <ABI> is not specified, ${ABI} is used. |
| 82 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
103 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
| 83 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
104 | # If <ABI> is not specified and ${ABI} and ${DEFAULT_ABI} are not defined, we return an empty string. |
| 84 | # |
|
|
| 85 | # Jeremy Huddleston <eradicator@gentoo.org> |
|
|
| 86 | get_abi_var() { |
105 | get_abi_var() { |
| 87 | local flag=${1} |
106 | local flag=$1 |
| 88 | local abi |
107 | local abi |
| 89 | if [ $# -gt 1 ]; then |
108 | if [ $# -gt 1 ]; then |
| 90 | abi=${2} |
109 | abi=${2} |
| 91 | elif [ -n "${ABI}" ]; then |
110 | elif [ -n "${ABI}" ]; then |
| 92 | abi=${ABI} |
111 | abi=${ABI} |
| 93 | elif [ -n "${DEFAULT_ABI}" ]; then |
112 | elif [ -n "${DEFAULT_ABI}" ]; then |
| 94 | abi=${DEFAULT_ABI} |
113 | abi=${DEFAULT_ABI} |
| 95 | else |
114 | else |
| 96 | return 1 |
115 | abi="default" |
| 97 | fi |
116 | fi |
| 98 | |
117 | |
| 99 | local var="${flag}_${abi}" |
118 | local var="${flag}_${abi}" |
| 100 | echo ${!var} |
119 | echo ${!var} |
| 101 | } |
120 | } |
| 102 | |
121 | |
|
|
122 | # @FUNCTION: get_abi_CFLAGS |
|
|
123 | # @USAGE: [ABI] |
|
|
124 | # @DESCRIPTION: |
|
|
125 | # Alias for 'get_abi_var CFLAGS' |
| 103 | get_abi_CFLAGS() { get_abi_var CFLAGS ${@}; } |
126 | get_abi_CFLAGS() { get_abi_var CFLAGS "$@"; } |
|
|
127 | |
|
|
128 | # @FUNCTION: get_abi_ASFLAGS |
|
|
129 | # @USAGE: [ABI] |
|
|
130 | # @DESCRIPTION: |
|
|
131 | # Alias for 'get_abi_var ASFLAGS' |
|
|
132 | get_abi_ASFLAGS() { get_abi_var ASFLAGS "$@"; } |
|
|
133 | |
|
|
134 | # @FUNCTION: get_abi_LDFLAGS |
|
|
135 | # @USAGE: [ABI] |
|
|
136 | # @DESCRIPTION: |
|
|
137 | # Alias for 'get_abi_var LDFLAGS' |
|
|
138 | get_abi_LDFLAGS() { get_abi_var LDFLAGS "$@"; } |
|
|
139 | |
|
|
140 | # @FUNCTION: get_abi_CHOST |
|
|
141 | # @USAGE: [ABI] |
|
|
142 | # @DESCRIPTION: |
|
|
143 | # Alias for 'get_abi_var CHOST' |
|
|
144 | get_abi_CHOST() { get_abi_var CHOST "$@"; } |
|
|
145 | |
|
|
146 | # @FUNCTION: get_abi_CTARGET |
|
|
147 | # @USAGE: [ABI] |
|
|
148 | # @DESCRIPTION: |
|
|
149 | # Alias for 'get_abi_var CTARGET' |
|
|
150 | get_abi_CTARGET() { get_abi_var CTARGET "$@"; } |
|
|
151 | |
|
|
152 | # @FUNCTION: get_abi_FAKE_TARGETS |
|
|
153 | # @USAGE: [ABI] |
|
|
154 | # @DESCRIPTION: |
|
|
155 | # Alias for 'get_abi_var FAKE_TARGETS' |
|
|
156 | get_abi_FAKE_TARGETS() { get_abi_var FAKE_TARGETS "$@"; } |
|
|
157 | |
|
|
158 | # @FUNCTION: get_abi_CDEFINE |
|
|
159 | # @USAGE: [ABI] |
|
|
160 | # @DESCRIPTION: |
|
|
161 | # Alias for 'get_abi_var CDEFINE' |
| 104 | get_abi_CDEFINE() { get_abi_var CDEFINE ${@}; } |
162 | get_abi_CDEFINE() { get_abi_var CDEFINE "$@"; } |
|
|
163 | |
|
|
164 | # @FUNCTION: get_abi_LIBDIR |
|
|
165 | # @USAGE: [ABI] |
|
|
166 | # @DESCRIPTION: |
|
|
167 | # Alias for 'get_abi_var LIBDIR' |
| 105 | get_abi_LIBDIR() { get_abi_var LIBDIR ${@}; } |
168 | get_abi_LIBDIR() { get_abi_var LIBDIR "$@"; } |
| 106 | |
169 | |
|
|
170 | # @FUNCTION: get_install_abis |
|
|
171 | # @DESCRIPTION: |
| 107 | # Return a list of the ABIs we want to install for with |
172 | # Return a list of the ABIs we want to install for with |
| 108 | # the last one in the list being the default. |
173 | # the last one in the list being the default. |
| 109 | get_abi_order() { |
174 | get_install_abis() { |
| 110 | local order="" |
175 | local order="" |
| 111 | |
176 | |
| 112 | if [ -z "${MULTILIB_ABIS}" ]; then |
177 | if [[ -z ${MULTILIB_ABIS} ]] ; then |
| 113 | echo "NOMULTILIB" |
178 | echo "default" |
| 114 | return 1 |
179 | return 0 |
| 115 | fi |
180 | fi |
| 116 | |
181 | |
| 117 | if hasq multilib-pkg-force ${RESTRICT} || |
182 | if [[ ${EMULTILIB_PKG} == "true" ]] ; then |
| 118 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
|
|
| 119 | for x in ${MULTILIB_ABIS}; do |
183 | for x in ${MULTILIB_ABIS} ; do |
| 120 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
184 | if [[ ${x} != "${DEFAULT_ABI}" ]] ; then |
| 121 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
185 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
| 122 | fi |
186 | fi |
| 123 | done |
187 | done |
| 124 | hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}" |
188 | hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}" |
| 125 | |
189 | |
| 126 | if [ -n "${ABI_ALLOW}" ]; then |
190 | if [[ -n ${ABI_ALLOW} ]] ; then |
| 127 | local ordera="" |
191 | local ordera="" |
| 128 | for x in ${order}; do |
192 | for x in ${order} ; do |
| 129 | if hasq ${x} ${ABI_ALLOW}; then |
193 | if hasq ${x} ${ABI_ALLOW} ; then |
| 130 | ordera="${ordera} ${x}" |
194 | ordera="${ordera} ${x}" |
| 131 | fi |
195 | fi |
| 132 | done |
196 | done |
| 133 | order="${ordera}" |
197 | order=${ordera} |
| 134 | fi |
198 | fi |
| 135 | else |
199 | else |
| 136 | order="${DEFAULT_ABI}" |
200 | order=${DEFAULT_ABI} |
| 137 | fi |
201 | fi |
| 138 | |
202 | |
| 139 | if [ -z "${order}" ]; then |
203 | if [[ -z ${order} ]] ; then |
| 140 | die "The ABI list is empty. Are you using a proper multilib profile? Perhaps your USE flags or MULTILIB_ABIS are too restrictive for this package." |
204 | die "The ABI list is empty. Are you using a proper multilib profile? Perhaps your USE flags or MULTILIB_ABIS are too restrictive for this package." |
| 141 | fi |
205 | fi |
| 142 | |
206 | |
| 143 | echo ${order} |
207 | echo ${order} |
| 144 | return 0 |
208 | return 0 |
| 145 | } |
209 | } |
| 146 | |
210 | |
| 147 | # get_all_libdir() |
211 | # @FUNCTION: get_all_abis |
|
|
212 | # @DESCRIPTION: |
|
|
213 | # Return a list of the ABIs supported by this profile. |
|
|
214 | # the last one in the list being the default. |
|
|
215 | get_all_abis() { |
|
|
216 | local order="" |
|
|
217 | |
|
|
218 | if [[ -z ${MULTILIB_ABIS} ]] ; then |
|
|
219 | echo "default" |
|
|
220 | return 0 |
|
|
221 | fi |
|
|
222 | |
|
|
223 | for x in ${MULTILIB_ABIS}; do |
|
|
224 | if [[ ${x} != ${DEFAULT_ABI} ]] ; then |
|
|
225 | order="${order:+${order} }${x}" |
|
|
226 | fi |
|
|
227 | done |
|
|
228 | order="${order:+${order} }${DEFAULT_ABI}" |
|
|
229 | |
|
|
230 | echo ${order} |
|
|
231 | return 0 |
|
|
232 | } |
|
|
233 | |
|
|
234 | # @FUNCTION: get_all_libdirs |
|
|
235 | # @DESCRIPTION: |
| 148 | # Returns a list of all the libdirs used by this profile. This includes |
236 | # Returns a list of all the libdirs used by this profile. This includes |
| 149 | # those that might not be touched by the current ebuild. |
237 | # those that might not be touched by the current ebuild and always includes |
|
|
238 | # "lib". |
| 150 | get_all_libdirs() { |
239 | get_all_libdirs() { |
| 151 | local libdirs="lib" |
240 | local libdirs |
| 152 | local abi |
241 | local abi |
| 153 | local dir |
242 | local dir |
| 154 | |
243 | |
| 155 | if [ -n "${MULTILIB_ABIS}" ]; then |
|
|
| 156 | for abi in ${MULTILIB_ABIS}; do |
244 | for abi in ${MULTILIB_ABIS}; do |
| 157 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
245 | libdirs+=" $(get_abi_LIBDIR ${abi})" |
| 158 | done |
246 | done |
| 159 | elif [ -n "${CONF_LIBDIR}" ]; then |
247 | [[ " ${libdirs} " != *" lib "* ]] && libdirs+=" lib" |
| 160 | for dir in ${CONF_LIBDIR} ${CONF_MULTILIBDIR:=lib32}; do |
|
|
| 161 | [ "${dir}" != "lib" ] && libdirs="${libdirs} ${dir}" |
|
|
| 162 | done |
|
|
| 163 | fi |
|
|
| 164 | |
248 | |
| 165 | echo "${libdirs}" |
249 | echo "${libdirs}" |
| 166 | } |
250 | } |
| 167 | |
251 | |
|
|
252 | # @FUNCTION: is_final_abi |
|
|
253 | # @DESCRIPTION: |
| 168 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
254 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
| 169 | # using the new multilib configuration. This can be used to determine |
255 | # using the new multilib configuration. This can be used to determine |
| 170 | # if we're in the last (or only) run through src_{unpack,compile,install} |
256 | # if we're in the last (or only) run through src_{unpack,compile,install} |
| 171 | is_final_abi() { |
257 | is_final_abi() { |
| 172 | [ -z "${ABI}" ] && return 0 |
258 | has_multilib_profile || return 0 |
| 173 | local ALL_ABIS=$(get_abi_order) |
259 | set -- $(get_install_abis) |
| 174 | local LAST_ABI=${ALL_ABIS/* /} |
260 | local LAST_ABI=$# |
| 175 | [ "${LAST_ABI}" = "${ABI}" ] |
261 | [[ ${!LAST_ABI} == ${ABI} ]] |
| 176 | } |
262 | } |
| 177 | |
263 | |
|
|
264 | # @FUNCTION: number_abis |
|
|
265 | # @DESCRIPTION: |
| 178 | # echo the number of ABIs we will be installing for |
266 | # echo the number of ABIs we will be installing for |
| 179 | number_abis() { |
267 | number_abis() { |
| 180 | get_abi_order | wc -w |
268 | get_install_abis | wc -w |
| 181 | } |
269 | } |
| 182 | |
270 | |
| 183 | # get_ml_incdir [<include dir> [<ABI>]] |
271 | # @FUNCTION: get_ml_incdir |
|
|
272 | # @USAGE: [include_dir] [ABI] |
|
|
273 | # @DESCRIPTION: |
| 184 | # include dir defaults to /usr/include |
274 | # include dir defaults to /usr/include |
| 185 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
275 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
|
|
276 | # |
|
|
277 | # If a multilib include dir is associated with the passed include dir, then |
|
|
278 | # we return it, otherwise, we just echo back the include dir. This is |
|
|
279 | # neccessary when a built script greps header files rather than testing them |
|
|
280 | # via #include (like perl) to figure out features. |
| 186 | get_ml_incdir() { |
281 | get_ml_incdir() { |
| 187 | local dir=/usr/include |
282 | local dir=/usr/include |
| 188 | |
283 | |
| 189 | if [[ ${#} -gt 0 ]]; then |
284 | if [[ $# -gt 0 ]]; then |
| 190 | incdir=${1} |
285 | incdir=$1 |
| 191 | shift |
286 | shift |
| 192 | fi |
287 | fi |
| 193 | |
288 | |
| 194 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
289 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
| 195 | echo ${incdir} |
290 | echo ${incdir} |
| 196 | return 0 |
291 | return 0 |
| 197 | fi |
292 | fi |
| 198 | |
293 | |
| 199 | local abi=${ABI:-${DEFAULT_ABI}} |
294 | local abi=${ABI-${DEFAULT_ABI}} |
| 200 | if [[ ${#} -gt 0 ]]; then |
295 | if [[ $# -gt 0 ]]; then |
| 201 | abi=${1} |
296 | abi=$1 |
| 202 | shift |
297 | shift |
| 203 | fi |
298 | fi |
| 204 | |
299 | |
| 205 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
300 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
| 206 | echo ${dir}/gentoo-multilib/${abi} |
301 | echo ${dir}/gentoo-multilib/${abi} |
| 207 | else |
302 | else |
| 208 | echo ${dir} |
303 | echo ${dir} |
| 209 | fi |
304 | fi |
| 210 | } |
305 | } |
| 211 | |
306 | |
| 212 | # prep_ml_includes: |
307 | # @FUNCTION: prep_ml_includes |
| 213 | # |
308 | # @DESCRIPTION: |
| 214 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
309 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
| 215 | # We can install them in different locations for each ABI and create a common |
310 | # We can install them in different locations for each ABI and create a common |
| 216 | # header which includes the right one based on CDEFINE_${ABI}. If your |
311 | # header which includes the right one based on CDEFINE_${ABI}. If your |
| 217 | # package installs ABI-specific headers, just add 'prep_ml_includes' to the |
312 | # package installs ABI-specific headers, just add 'prep_ml_includes' to the |
| 218 | # end of your src_install(). It takes a list of directories that include |
313 | # end of your src_install(). It takes a list of directories that include |
| 219 | # files are installed in (default is /usr/include if none are passed). |
314 | # files are installed in (default is /usr/include if none are passed). |
| 220 | # |
315 | # |
| 221 | # Example: |
316 | # Example: |
| 222 | # src_install() { |
317 | # src_install() { |
| 223 | # ... |
318 | # ... |
| 224 | # prep_ml_includes /usr/qt/3/include |
319 | # prep_ml_includes /usr/qt/3/include |
| 225 | # } |
320 | # } |
| 226 | |
|
|
| 227 | prep_ml_includes() { |
321 | prep_ml_includes() { |
| 228 | if [ $(number_abis) -gt 1 ]; then |
322 | if [[ $(number_abis) -gt 1 ]] ; then |
| 229 | local dir |
323 | local dir |
| 230 | local dirs |
324 | local dirs |
| 231 | local base |
325 | local base |
| 232 | |
326 | |
| 233 | if [ ${#} -eq 0 ]; then |
327 | if [[ $# -eq 0 ]] ; then |
| 234 | dirs="/usr/include" |
328 | dirs=/usr/include |
| 235 | else |
329 | else |
| 236 | dirs="${@}" |
330 | dirs="$@" |
| 237 | fi |
331 | fi |
| 238 | |
332 | |
| 239 | for dir in ${dirs}; do |
333 | for dir in ${dirs} ; do |
| 240 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
334 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
| 241 | mkdir -p ${base} |
335 | mkdir -p "${base}" |
| 242 | [ -d ${base}/${ABI} ] && rm -rf ${base}/${ABI} |
336 | [[ -d ${base}/${ABI} ]] && rm -rf "${base}/${ABI}" |
| 243 | mv ${D}/${dir} ${base}/${ABI} |
337 | mv "${D}/${dir}" "${base}/${ABI}" |
| 244 | done |
338 | done |
| 245 | |
339 | |
| 246 | if is_final_abi; then |
340 | if is_final_abi; then |
| 247 | base=${T}/gentoo-multilib |
341 | base=${T}/gentoo-multilib |
| 248 | pushd ${base} |
342 | pushd "${base}" |
| 249 | find . | cpio -pmd --no-preserve-owner ${D} |
343 | find . | tar -c -T - -f - | tar -x --no-same-owner -f - -C "${D}" |
| 250 | popd |
344 | popd |
| 251 | |
345 | |
|
|
346 | # This 'set' stuff is required by mips profiles to properly pass |
|
|
347 | # CDEFINE's (which have spaces) to sub-functions |
|
|
348 | set -- |
| 252 | for dir in ${dirs}; do |
349 | for dir in ${dirs} ; do |
| 253 | local args=${dir} |
350 | set -- "$@" "${dir}" |
| 254 | local abi |
351 | local abi |
| 255 | for abi in $(get_abi_order); do |
352 | for abi in $(get_install_abis); do |
| 256 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
353 | set -- "$@" "$(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
| 257 | done |
354 | done |
| 258 | create_ml_includes ${args} |
355 | create_ml_includes "$@" |
| 259 | done |
356 | done |
| 260 | fi |
357 | fi |
| 261 | fi |
358 | fi |
| 262 | } |
359 | } |
| 263 | |
360 | |
|
|
361 | # @FUNCTION: create_ml_includes |
|
|
362 | # @USAGE: <include_dir> <symbol_1>:<dir_1> [<symbol_2>:<dir_2>...] |
|
|
363 | # @DESCRIPTION: |
| 264 | # If you need more control than prep_ml_includes can offer (like linux-headers |
364 | # If you need more control than prep_ml_includes can offer (like linux-headers |
| 265 | # for the asm-* dirs, then use create_ml_includes. The firs argument is the |
365 | # for the asm-* dirs, then use create_ml_includes. The firs argument is the |
| 266 | # common dir. The remaining args are of the form <symbol>:<dir> where |
366 | # common dir. The remaining args are of the form <symbol>:<dir> where |
| 267 | # <symbol> is what is put in the #ifdef for choosing that dir. |
367 | # <symbol> is what is put in the #ifdef for choosing that dir. |
| 268 | # |
368 | # |
| 269 | # Ideas for this code came from debian's sparc-linux headers package. |
369 | # Ideas for this code came from debian's sparc-linux headers package. |
| 270 | # |
370 | # |
| 271 | # Example: |
371 | # Example: |
| 272 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
372 | # create_ml_includes /usr/include/asm __sparc__:/usr/include/asm-sparc __sparc64__:/usr/include/asm-sparc64 |
| 273 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
373 | # create_ml_includes /usr/include/asm __i386__:/usr/include/asm-i386 __x86_64__:/usr/include/asm-x86_64 |
|
|
374 | # |
|
|
375 | # Warning: Be careful with the ordering here. The default ABI has to be the |
|
|
376 | # last, because it is always defined (by GCC) |
| 274 | create_ml_includes() { |
377 | create_ml_includes() { |
| 275 | local dest="${1}" |
378 | local dest=$1 |
| 276 | shift |
379 | shift |
| 277 | local mlinfo="${@}" |
|
|
| 278 | local basedirs=$(create_ml_includes-listdirs ${mlinfo}) |
380 | local basedirs=$(create_ml_includes-listdirs "$@") |
| 279 | |
381 | |
| 280 | create_ml_includes-makedestdirs ${dest} ${basedirs} |
382 | create_ml_includes-makedestdirs ${dest} ${basedirs} |
| 281 | |
383 | |
| 282 | local file |
384 | local file |
| 283 | for file in $(create_ml_includes-allfiles ${basedirs}); do |
385 | for file in $(create_ml_includes-allfiles ${basedirs}) ; do |
| 284 | local name="$(echo $file | tr a-z A-Z | sed 's:[^A-Z]:_:g')" |
386 | #local name=$(echo ${file} | tr '[:lower:]' '[:upper:]' | sed 's:[^[:upper:]]:_:g') |
| 285 | { |
387 | ( |
| 286 | echo "/* Common header file autogenerated by create_ml_includes in multilib.eclass */" |
388 | echo "/* Autogenerated by create_ml_includes() in multilib.eclass */" |
| 287 | #echo "#ifndef __CREATE_ML_INCLUDES_STUB_${name}__" |
|
|
| 288 | #echo "#define __CREATE_ML_INCLUDES_STUB_${name}__" |
|
|
| 289 | #echo "" |
|
|
| 290 | |
389 | |
| 291 | local dir |
390 | local dir |
| 292 | for dir in ${basedirs}; do |
391 | for dir in ${basedirs}; do |
| 293 | if [ -f "${D}/${dir}/${file}" ]; then |
392 | if [[ -f ${D}/${dir}/${file} ]] ; then |
| 294 | echo "#ifdef $(create_ml_includes-sym_for_dir ${dir} ${mlinfo})" |
|
|
| 295 | echo "#include \"$(create_ml_includes-relative_between ${dest}/$(dirname ${file}) ${dir}/${file})\"" |
|
|
| 296 | echo "#endif /* $(create_ml_includes-sym_for_dir ${dir} ${mlinfo}) */" |
|
|
| 297 | echo "" |
393 | echo "" |
|
|
394 | local sym=$(create_ml_includes-sym_for_dir ${dir} "$@") |
|
|
395 | if [[ ${sym/=} != "${sym}" ]] ; then |
|
|
396 | echo "#if ${sym}" |
|
|
397 | elif [[ ${sym::1} == "!" ]] ; then |
|
|
398 | echo "#ifndef ${sym:1}" |
|
|
399 | else |
|
|
400 | echo "#ifdef ${sym}" |
|
|
401 | fi |
|
|
402 | echo "# include <$(create_ml_includes-absolute ${dir}/${file})>" |
|
|
403 | echo "#endif /* ${sym} */" |
| 298 | fi |
404 | fi |
| 299 | done |
405 | done |
| 300 | |
406 | |
| 301 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
407 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
| 302 | } > ${D}/${dest}/${file} |
408 | ) > "${D}/${dest}/${file}" |
| 303 | done |
409 | done |
| 304 | } |
410 | } |
| 305 | |
411 | |
| 306 | # Helper function for create_ml_includes |
412 | # Helper function for create_ml_includes |
| 307 | create_ml_includes-relative_between() { |
413 | create_ml_includes-absolute() { |
| 308 | local src="$(create_ml_includes-tidy_path ${1})" |
|
|
| 309 | local dst="$(create_ml_includes-tidy_path ${2})" |
414 | local dst="$(create_ml_includes-tidy_path $1)" |
| 310 | |
415 | |
| 311 | src=(${src//\// }) |
|
|
| 312 | dst=(${dst//\// }) |
416 | dst=(${dst//\// }) |
| 313 | |
417 | |
| 314 | local i |
418 | local i |
| 315 | for ((i=0; i<${#src[*]}; i++)); do |
419 | for ((i=0; i<${#dst[*]}; i++)); do |
| 316 | [ "${dst[i]}" != "${src[i]}" ] && break |
420 | [ "${dst[i]}" == "include" ] && break |
| 317 | done |
421 | done |
| 318 | |
422 | |
| 319 | local common=$i |
423 | local strip_upto=$i |
| 320 | |
424 | |
| 321 | for ((i=${#src[*]}; i>common; i--)); do |
|
|
| 322 | echo -n ../ |
|
|
| 323 | done |
|
|
| 324 | |
|
|
| 325 | for ((i=common; i<${#dst[*]}-1; i++)); do |
425 | for ((i=strip_upto+1; i<${#dst[*]}-1; i++)); do |
| 326 | echo -n ${dst[i]}/ |
426 | echo -n ${dst[i]}/ |
| 327 | done |
427 | done |
| 328 | |
428 | |
| 329 | echo -n ${dst[i]} |
429 | echo -n ${dst[i]} |
| 330 | } |
430 | } |
| 331 | |
431 | |
| 332 | # Helper function for create_ml_includes |
432 | # Helper function for create_ml_includes |
| 333 | create_ml_includes-tidy_path() { |
433 | create_ml_includes-tidy_path() { |
| 334 | local removed="${1}" |
434 | local removed=$1 |
| 335 | |
435 | |
| 336 | if [ -n "${removed}" ]; then |
436 | if [ -n "${removed}" ]; then |
| 337 | # Remove multiple slashes |
437 | # Remove multiple slashes |
| 338 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
438 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
| 339 | removed=${removed/\/\//\/} |
439 | removed=${removed/\/\//\/} |
| … | |
… | |
| 356 | # Remove trailing .. |
456 | # Remove trailing .. |
| 357 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
457 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
| 358 | |
458 | |
| 359 | # Remove trailing / |
459 | # Remove trailing / |
| 360 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
460 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
| 361 | |
461 | |
| 362 | echo ${removed} |
462 | echo ${removed} |
| 363 | fi |
463 | fi |
| 364 | } |
464 | } |
| 365 | |
465 | |
| 366 | # Helper function for create_ml_includes |
466 | # Helper function for create_ml_includes |
| 367 | create_ml_includes-listdirs() { |
467 | create_ml_includes-listdirs() { |
| 368 | local dirs |
468 | local dirs |
| 369 | local data |
469 | local data |
| 370 | for data in ${@}; do |
470 | for data in "$@"; do |
| 371 | dirs="${dirs} ${data/*:/}" |
471 | dirs="${dirs} ${data/*:/}" |
| 372 | done |
472 | done |
| 373 | echo ${dirs:1} |
473 | echo ${dirs:1} |
| 374 | } |
474 | } |
| 375 | |
475 | |
| 376 | # Helper function for create_ml_includes |
476 | # Helper function for create_ml_includes |
| 377 | create_ml_includes-makedestdirs() { |
477 | create_ml_includes-makedestdirs() { |
| 378 | local dest=${1} |
478 | local dest=$1 |
| 379 | shift |
479 | shift |
| 380 | local basedirs=${@} |
480 | local basedirs=$@ |
|
|
481 | [[ -z ${ED} ]] && local ED=${D} |
| 381 | |
482 | |
| 382 | dodir ${dest} |
483 | dodir ${dest} |
| 383 | |
484 | |
| 384 | local basedir |
485 | local basedir |
| 385 | for basedir in ${basedirs}; do |
486 | for basedir in ${basedirs}; do |
| 386 | local dir |
487 | local dir |
| 387 | for dir in $(find ${D}/${basedir} -type d); do |
488 | for dir in $(find "${ED}"/${basedir} -type d); do |
| 388 | dodir ${dest}/${dir/${D}\/${basedir}/} |
489 | dodir ${dest}/${dir/${ED}\/${basedir}/} |
| 389 | done |
490 | done |
| 390 | done |
491 | done |
| 391 | } |
492 | } |
| 392 | |
493 | |
| 393 | # Helper function for create_ml_includes |
494 | # Helper function for create_ml_includes |
| 394 | create_ml_includes-allfiles() { |
495 | create_ml_includes-allfiles() { |
| 395 | local basedirs=${@} |
496 | [[ -z ${ED} ]] && local ED=${D} |
| 396 | |
|
|
| 397 | local basedir |
497 | local basedir file |
| 398 | for basedir in ${basedirs}; do |
498 | for basedir in "$@" ; do |
| 399 | local file |
|
|
| 400 | for file in $(find ${D}/${basedir} -type f); do |
499 | for file in $(find "${ED}"/${basedir} -type f); do |
| 401 | echo ${file/${D}\/${basedir}\//} |
500 | echo ${file/${ED}\/${basedir}\//} |
| 402 | done |
501 | done |
| 403 | done | sort | uniq |
502 | done | sort | uniq |
| 404 | } |
503 | } |
| 405 | |
504 | |
| 406 | # Helper function for create_ml_includes |
505 | # Helper function for create_ml_includes |
| 407 | create_ml_includes-sym_for_dir() { |
506 | create_ml_includes-sym_for_dir() { |
| 408 | local dir="${1}" |
507 | local dir=$1 |
| 409 | shift |
508 | shift |
| 410 | local data |
509 | local data |
| 411 | for data in ${@}; do |
510 | for data in "$@"; do |
| 412 | if [ "${dir}" = "${data/*:/}" ]; then |
511 | if [[ ${data} == *:${dir} ]] ; then |
| 413 | echo ${data/:*/} |
512 | echo ${data/:*/} |
| 414 | return 0 |
513 | return 0 |
| 415 | fi |
514 | fi |
| 416 | done |
515 | done |
| 417 | echo "Shouldn't be here -- create_ml_includes-sym_for_dir ${1} ${@}" |
516 | echo "Shouldn't be here -- create_ml_includes-sym_for_dir $1 $@" |
| 418 | # exit because we'll likely be called from a subshell |
517 | # exit because we'll likely be called from a subshell |
| 419 | exit 1 |
518 | exit 1 |
| 420 | } |
519 | } |
|
|
520 | |
|
|
521 | # @FUNCTION: get_libname |
|
|
522 | # @USAGE: [version] |
|
|
523 | # @DESCRIPTION: |
|
|
524 | # Returns libname with proper suffix {.so,.dylib,.dll,etc} and optionally |
|
|
525 | # supplied version for the current platform identified by CHOST. |
|
|
526 | # |
|
|
527 | # Example: |
|
|
528 | # get_libname ${PV} |
|
|
529 | # Returns: .so.${PV} (ELF) || .${PV}.dylib (MACH) || ... |
|
|
530 | get_libname() { |
|
|
531 | local libname |
|
|
532 | local ver=$1 |
|
|
533 | case ${CHOST} in |
|
|
534 | *-cygwin|mingw*|*-mingw*) libname="dll";; |
|
|
535 | *-darwin*) libname="dylib";; |
|
|
536 | *-mint*) libname="irrelevant";; |
|
|
537 | hppa*-hpux*) libname="sl";; |
|
|
538 | *) libname="so";; |
|
|
539 | esac |
|
|
540 | |
|
|
541 | if [[ -z $* ]] ; then |
|
|
542 | echo ".${libname}" |
|
|
543 | else |
|
|
544 | for ver in "$@" ; do |
|
|
545 | case ${CHOST} in |
|
|
546 | *-darwin*) echo ".${ver}.${libname}";; |
|
|
547 | *-mint*) echo ".${libname}";; |
|
|
548 | *) echo ".${libname}.${ver}";; |
|
|
549 | esac |
|
|
550 | done |
|
|
551 | fi |
|
|
552 | } |
|
|
553 | |
|
|
554 | # @FUNCTION: get_modname |
|
|
555 | # @USAGE: |
|
|
556 | # @DESCRIPTION: |
|
|
557 | # Returns modulename with proper suffix {.so,.bundle,etc} for the current |
|
|
558 | # platform identified by CHOST. |
|
|
559 | # |
|
|
560 | # Example: |
|
|
561 | # libfoo$(get_modname) |
|
|
562 | # Returns: libfoo.so (ELF) || libfoo.bundle (MACH) || ... |
|
|
563 | get_modname() { |
|
|
564 | local modname |
|
|
565 | local ver=$1 |
|
|
566 | case ${CHOST} in |
|
|
567 | *-darwin*) modname="bundle";; |
|
|
568 | *) modname="so";; |
|
|
569 | esac |
|
|
570 | |
|
|
571 | echo ".${modname}" |
|
|
572 | } |
|
|
573 | |
|
|
574 | # This is for the toolchain to setup profile variables when pulling in |
|
|
575 | # a crosscompiler (and thus they aren't set in the profile) |
|
|
576 | multilib_env() { |
|
|
577 | local CTARGET=${1:-${CTARGET}} |
|
|
578 | |
|
|
579 | case ${CTARGET} in |
|
|
580 | x86_64*) |
|
|
581 | export CFLAGS_x86=${CFLAGS_x86--m32} |
|
|
582 | export CHOST_x86=${CTARGET/x86_64/i686} |
|
|
583 | export CTARGET_x86=${CHOST_x86} |
|
|
584 | export CDEFINE_x86="__i386__" |
|
|
585 | export LIBDIR_x86="lib32" |
|
|
586 | |
|
|
587 | export CFLAGS_amd64=${CFLAGS_amd64--m64} |
|
|
588 | export CHOST_amd64=${CTARGET} |
|
|
589 | export CTARGET_amd64=${CHOST_amd64} |
|
|
590 | export CDEFINE_amd64="__x86_64__" |
|
|
591 | export LIBDIR_amd64="lib64" |
|
|
592 | |
|
|
593 | export CFLAGS_x32=${CFLAGS_x32--mx32} |
|
|
594 | export CHOST_x32=${CTARGET} |
|
|
595 | export CTARGET_x32=${CHOST_x32} |
|
|
596 | export CDEFINE_x32="__i386__" |
|
|
597 | export LIBDIR_x32="libx32" |
|
|
598 | |
|
|
599 | : ${MULTILIB_ABIS=amd64 x86} |
|
|
600 | : ${DEFAULT_ABI=amd64} |
|
|
601 | ;; |
|
|
602 | mips64*) |
|
|
603 | export CFLAGS_o32=${CFLAGS_o32--mabi=32} |
|
|
604 | export CHOST_o32=${CTARGET/mips64/mips} |
|
|
605 | export CTARGET_o32=${CHOST_o32} |
|
|
606 | export CDEFINE_o32="_MIPS_SIM == _ABIO32" |
|
|
607 | export LIBDIR_o32="lib" |
|
|
608 | |
|
|
609 | export CFLAGS_n32=${CFLAGS_n32--mabi=n32} |
|
|
610 | export CHOST_n32=${CTARGET} |
|
|
611 | export CTARGET_n32=${CHOST_n32} |
|
|
612 | export CDEFINE_n32="_MIPS_SIM == _ABIN32" |
|
|
613 | export LIBDIR_n32="lib32" |
|
|
614 | |
|
|
615 | export CFLAGS_n64=${CFLAGS_n64--mabi=64} |
|
|
616 | export CHOST_n64=${CTARGET} |
|
|
617 | export CTARGET_n64=${CHOST_n64} |
|
|
618 | export CDEFINE_n64="_MIPS_SIM == _ABI64" |
|
|
619 | export LIBDIR_n64="lib64" |
|
|
620 | |
|
|
621 | : ${MULTILIB_ABIS=n64 n32 o32} |
|
|
622 | : ${DEFAULT_ABI=n32} |
|
|
623 | ;; |
|
|
624 | powerpc64*) |
|
|
625 | export CFLAGS_ppc=${CFLAGS_ppc--m32} |
|
|
626 | export CHOST_ppc=${CTARGET/powerpc64/powerpc} |
|
|
627 | export CTARGET_ppc=${CHOST_ppc} |
|
|
628 | export CDEFINE_ppc="!__powerpc64__" |
|
|
629 | export LIBDIR_ppc="lib" |
|
|
630 | |
|
|
631 | export CFLAGS_ppc64=${CFLAGS_ppc64--m64} |
|
|
632 | export CHOST_ppc64=${CTARGET} |
|
|
633 | export CTARGET_ppc64=${CHOST_ppc64} |
|
|
634 | export CDEFINE_ppc64="__powerpc64__" |
|
|
635 | export LIBDIR_ppc64="lib64" |
|
|
636 | |
|
|
637 | : ${MULTILIB_ABIS=ppc64 ppc} |
|
|
638 | : ${DEFAULT_ABI=ppc64} |
|
|
639 | ;; |
|
|
640 | s390x*) |
|
|
641 | export CFLAGS_s390=${CFLAGS_s390--m31} # the 31 is not a typo |
|
|
642 | export CHOST_s390=${CTARGET/s390x/s390} |
|
|
643 | export CTARGET_s390=${CHOST_s390} |
|
|
644 | export CDEFINE_s390="!__s390x__" |
|
|
645 | export LIBDIR_s390="lib" |
|
|
646 | |
|
|
647 | export CFLAGS_s390x=${CFLAGS_s390x--m64} |
|
|
648 | export CHOST_s390x=${CTARGET} |
|
|
649 | export CTARGET_s390x=${CHOST_s390x} |
|
|
650 | export CDEFINE_s390x="__s390x__" |
|
|
651 | export LIBDIR_s390x="lib64" |
|
|
652 | |
|
|
653 | : ${MULTILIB_ABIS=s390x s390} |
|
|
654 | : ${DEFAULT_ABI=s390x} |
|
|
655 | ;; |
|
|
656 | sparc*) |
|
|
657 | export CFLAGS_sparc32=${CFLAGS_sparc32} |
|
|
658 | export CHOST_sparc32=${CTARGET/sparc64/sparc} |
|
|
659 | export CTARGET_sparc32=${CHOST_sparc32} |
|
|
660 | export CDEFINE_sparc32="!__arch64__" |
|
|
661 | export LIBDIR_sparc32="lib" |
|
|
662 | |
|
|
663 | export CFLAGS_sparc64=${CFLAGS_sparc64--m64} |
|
|
664 | export CHOST_sparc64=${CTARGET} |
|
|
665 | export CTARGET_sparc64=${CHOST_sparc64} |
|
|
666 | export CDEFINE_sparc64="__arch64__" |
|
|
667 | export LIBDIR_sparc64="lib64" |
|
|
668 | |
|
|
669 | : ${MULTILIB_ABIS=sparc64 sparc32} |
|
|
670 | : ${DEFAULT_ABI=sparc64} |
|
|
671 | ;; |
|
|
672 | *) |
|
|
673 | : ${MULTILIB_ABIS=default} |
|
|
674 | : ${DEFAULT_ABI=default} |
|
|
675 | ;; |
|
|
676 | esac |
|
|
677 | |
|
|
678 | export MULTILIB_ABIS DEFAULT_ABI |
|
|
679 | } |
|
|
680 | |
|
|
681 | # @FUNCTION: multilib_toolchain_setup |
|
|
682 | # @DESCRIPTION: |
|
|
683 | # Hide multilib details here for packages which are forced to be compiled for a |
|
|
684 | # specific ABI when run on another ABI (like x86-specific packages on amd64) |
|
|
685 | multilib_toolchain_setup() { |
|
|
686 | local v vv |
|
|
687 | |
|
|
688 | export ABI=$1 |
|
|
689 | |
|
|
690 | # First restore any saved state we have laying around. |
|
|
691 | if [[ ${__DEFAULT_ABI_SAVED} == "true" ]] ; then |
|
|
692 | for v in CHOST CBUILD AS CC CXX LD ; do |
|
|
693 | vv="__abi_saved_${v}" |
|
|
694 | export ${v}="${!vv}" |
|
|
695 | unset ${vv} |
|
|
696 | done |
|
|
697 | unset __DEFAULT_ABI_SAVED |
|
|
698 | fi |
|
|
699 | |
|
|
700 | # We want to avoid the behind-the-back magic of gcc-config as it |
|
|
701 | # screws up ccache and distcc. See #196243 for more info. |
|
|
702 | if [[ ${ABI} != ${DEFAULT_ABI} ]] ; then |
|
|
703 | # Back that multilib-ass up so we can restore it later |
|
|
704 | for v in CHOST CBUILD AS CC CXX LD ; do |
|
|
705 | export __abi_saved_${v}="${!v}" |
|
|
706 | done |
|
|
707 | export __DEFAULT_ABI_SAVED="true" |
|
|
708 | |
|
|
709 | # Set the CHOST native first so that we pick up the native |
|
|
710 | # toolchain and not a cross-compiler by accident #202811. |
|
|
711 | export CHOST=$(get_abi_CHOST ${DEFAULT_ABI}) |
|
|
712 | export AS="$(tc-getAS) $(get_abi_ASFLAGS)" |
|
|
713 | export CC="$(tc-getCC) $(get_abi_CFLAGS)" |
|
|
714 | export CXX="$(tc-getCXX) $(get_abi_CFLAGS)" |
|
|
715 | export LD="$(tc-getLD) $(get_abi_LDFLAGS)" |
|
|
716 | export CHOST=$(get_abi_CHOST $1) |
|
|
717 | export CBUILD=$(get_abi_CHOST $1) |
|
|
718 | fi |
|
|
719 | } |