| 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.91 2011/07/08 11:35:01 ssuominen 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 KERNEL_ABI=${KERNEL_ABI:-${DEFAULT_ABI}} |
| 14 | |
25 | |
|
|
26 | # @FUNCTION: has_multilib_profile |
|
|
27 | # @DESCRIPTION: |
|
|
28 | # Return true if the current profile is a multilib profile and lists more than |
|
|
29 | # one abi in ${MULTILIB_ABIS}. When has_multilib_profile returns true, that |
|
|
30 | # profile should enable the 'multilib' use flag. This is so you can DEPEND on |
|
|
31 | # a package only for multilib or not multilib. |
|
|
32 | has_multilib_profile() { |
|
|
33 | [ -n "${MULTILIB_ABIS}" -a "${MULTILIB_ABIS}" != "${MULTILIB_ABIS/ /}" ] |
|
|
34 | } |
|
|
35 | |
|
|
36 | # @FUNCTION: get_libdir |
|
|
37 | # @RETURN: the libdir for the selected ABI |
|
|
38 | # @DESCRIPTION: |
| 15 | # This function simply returns the desired lib directory. With portage |
39 | # This function simply returns the desired lib directory. With portage |
| 16 | # 2.0.51, we now have support for installing libraries to lib32/lib64 |
40 | # 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 |
41 | # 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 |
42 | # to assume all libraries will end up in lib. Replace any (sane) instances |
| 19 | # where lib is named directly with $(get_libdir) if possible. |
43 | # where lib is named directly with $(get_libdir) if possible. |
| 20 | # |
|
|
| 21 | # Travis Tilley <lv@gentoo.org> (24 Aug 2004) |
|
|
| 22 | # |
44 | # |
| 23 | # Jeremy Huddleston <eradicator@gentoo.org> (23 Dec 2004): |
45 | # Jeremy Huddleston <eradicator@gentoo.org> (23 Dec 2004): |
| 24 | # Added support for ${ABI} and ${DEFAULT_ABI}. If they're both not set, |
46 | # 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 |
47 | # 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 |
48 | # depend on a newer version of portage (not yet released) which uses these |
| 27 | # over CONF_LIBDIR in econf, dolib, etc... |
49 | # over CONF_LIBDIR in econf, dolib, etc... |
| 28 | get_libdir() { |
50 | get_libdir() { |
| 29 | LIBDIR_TEST=$(type econf) |
51 | local CONF_LIBDIR |
| 30 | if [ ! -z "${CONF_LIBDIR_OVERRIDE}" ] ; then |
52 | if [ -n "${CONF_LIBDIR_OVERRIDE}" ] ; then |
| 31 | # if there is an override, we want to use that... always. |
53 | # if there is an override, we want to use that... always. |
| 32 | CONF_LIBDIR="${CONF_LIBDIR_OVERRIDE}" |
54 | echo ${CONF_LIBDIR_OVERRIDE} |
| 33 | elif [ -n "$(get_abi_LIBDIR)" ]; then |
55 | else |
| 34 | CONF_LIBDIR="$(get_abi_LIBDIR)" |
56 | 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 |
57 | fi |
| 39 | # and of course, default to lib if CONF_LIBDIR isnt set |
|
|
| 40 | echo ${CONF_LIBDIR:=lib} |
|
|
| 41 | unset LIBDIR_TEST |
|
|
| 42 | } |
58 | } |
| 43 | |
59 | |
|
|
60 | # @FUNCTION: get_multilibdir |
|
|
61 | # @RETURN: Returns the multilibdir |
| 44 | get_multilibdir() { |
62 | get_multilibdir() { |
| 45 | if [ -n "$(get_abi_LIBDIR)" ]; then |
63 | 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" |
64 | 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 |
65 | exit 1 |
| 48 | fi |
66 | fi |
| 49 | echo ${CONF_MULTILIBDIR:=lib32} |
67 | echo ${CONF_MULTILIBDIR:=lib32} |
| 50 | } |
68 | } |
| 51 | |
69 | |
|
|
70 | # @FUNCTION: get_libdir_override |
|
|
71 | # @DESCRIPTION: |
| 52 | # Sometimes you need to override the value returned by get_libdir. A good |
72 | # 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, |
73 | # 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 |
74 | # 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 |
75 | # to be 32bit, such as adobe acrobat). Note that this override also bypasses |
| 56 | # portage version sanity checking. |
76 | # portage version sanity checking. |
| 57 | # get_libdir_override expects one argument, the result get_libdir should |
77 | # get_libdir_override expects one argument, the result get_libdir should |
| 58 | # return: |
78 | # return: |
| 59 | # |
79 | # |
| 60 | # get_libdir_override lib64 |
80 | # get_libdir_override lib64 |
| 61 | # |
|
|
| 62 | # Travis Tilley <lv@gentoo.org> (31 Aug 2004) |
|
|
| 63 | get_libdir_override() { |
81 | get_libdir_override() { |
| 64 | if [ -n "$(get_abi_LIBDIR)" ]; then |
82 | 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" |
83 | 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 |
84 | exit 1 |
| 67 | fi |
85 | fi |
| 68 | CONF_LIBDIR="$1" |
86 | CONF_LIBDIR="$1" |
| 69 | CONF_LIBDIR_OVERRIDE="$1" |
87 | CONF_LIBDIR_OVERRIDE="$1" |
|
|
88 | LIBDIR_default="$1" |
| 70 | } |
89 | } |
| 71 | |
90 | |
| 72 | # get_abi_var <VAR> [<ABI>] |
91 | # @FUNCTION: get_abi_var |
|
|
92 | # @USAGE: <VAR> [ABI] |
| 73 | # returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
93 | # @RETURN: returns the value of ${<VAR>_<ABI>} which should be set in make.defaults |
| 74 | # |
94 | # @DESCRIPTION: |
| 75 | # ex: |
95 | # ex: |
| 76 | # CFLAGS=$(get_abi_var CFLAGS sparc32) # CFLAGS=-m32 |
96 | # CFLAGS=$(get_abi_var CFLAGS sparc32) # CFLAGS=-m32 |
| 77 | # |
97 | # |
| 78 | # Note that the prefered method is to set CC="$(tc-getCC) $(get_abi_CFLAGS)" |
98 | # Note that the prefered method is to set CC="$(tc-getCC) $(get_abi_CFLAGS)" |
| 79 | # This will hopefully be added to portage soon... |
99 | # This will hopefully be added to portage soon... |
| 80 | # |
100 | # |
| 81 | # If <ABI> is not specified, ${ABI} is used. |
101 | # If <ABI> is not specified, ${ABI} is used. |
| 82 | # If <ABI> is not specified and ${ABI} is not defined, ${DEFAULT_ABI} is used. |
102 | # 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. |
103 | # 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() { |
104 | get_abi_var() { |
| 87 | local flag=${1} |
105 | local flag=$1 |
| 88 | local abi |
106 | local abi |
| 89 | if [ $# -gt 1 ]; then |
107 | if [ $# -gt 1 ]; then |
| 90 | abi=${2} |
108 | abi=${2} |
| 91 | elif [ -n "${ABI}" ]; then |
109 | elif [ -n "${ABI}" ]; then |
| 92 | abi=${ABI} |
110 | abi=${ABI} |
| 93 | elif [ -n "${DEFAULT_ABI}" ]; then |
111 | elif [ -n "${DEFAULT_ABI}" ]; then |
| 94 | abi=${DEFAULT_ABI} |
112 | abi=${DEFAULT_ABI} |
| 95 | else |
113 | else |
| 96 | return 1 |
114 | abi="default" |
| 97 | fi |
115 | fi |
| 98 | |
116 | |
| 99 | local var="${flag}_${abi}" |
117 | local var="${flag}_${abi}" |
| 100 | echo ${!var} |
118 | echo ${!var} |
| 101 | } |
119 | } |
| 102 | |
120 | |
|
|
121 | # @FUNCTION: get_abi_CFLAGS |
|
|
122 | # @USAGE: [ABI] |
|
|
123 | # @DESCRIPTION: |
|
|
124 | # Alias for 'get_abi_var CFLAGS' |
| 103 | get_abi_CFLAGS() { get_abi_var CFLAGS ${@}; } |
125 | get_abi_CFLAGS() { get_abi_var CFLAGS "$@"; } |
| 104 | get_abi_CDEFINE() { get_abi_var CDEFINE ${@}; } |
126 | |
|
|
127 | # @FUNCTION: get_abi_ASFLAGS |
|
|
128 | # @USAGE: [ABI] |
|
|
129 | # @DESCRIPTION: |
|
|
130 | # Alias for 'get_abi_var ASFLAGS' |
|
|
131 | get_abi_ASFLAGS() { get_abi_var ASFLAGS "$@"; } |
|
|
132 | |
|
|
133 | # @FUNCTION: get_abi_LDFLAGS |
|
|
134 | # @USAGE: [ABI] |
|
|
135 | # @DESCRIPTION: |
|
|
136 | # Alias for 'get_abi_var LDFLAGS' |
|
|
137 | get_abi_LDFLAGS() { get_abi_var LDFLAGS "$@"; } |
|
|
138 | |
|
|
139 | # @FUNCTION: get_abi_CHOST |
|
|
140 | # @USAGE: [ABI] |
|
|
141 | # @DESCRIPTION: |
|
|
142 | # Alias for 'get_abi_var CHOST' |
|
|
143 | get_abi_CHOST() { get_abi_var CHOST "$@"; } |
|
|
144 | |
|
|
145 | # @FUNCTION: get_abi_CTARGET |
|
|
146 | # @USAGE: [ABI] |
|
|
147 | # @DESCRIPTION: |
|
|
148 | # Alias for 'get_abi_var CTARGET' |
|
|
149 | get_abi_CTARGET() { get_abi_var CTARGET "$@"; } |
|
|
150 | |
|
|
151 | # @FUNCTION: get_abi_FAKE_TARGETS |
|
|
152 | # @USAGE: [ABI] |
|
|
153 | # @DESCRIPTION: |
|
|
154 | # Alias for 'get_abi_var FAKE_TARGETS' |
|
|
155 | get_abi_FAKE_TARGETS() { get_abi_var FAKE_TARGETS "$@"; } |
|
|
156 | |
|
|
157 | # @FUNCTION: get_abi_LIBDIR |
|
|
158 | # @USAGE: [ABI] |
|
|
159 | # @DESCRIPTION: |
|
|
160 | # Alias for 'get_abi_var LIBDIR' |
| 105 | get_abi_LIBDIR() { get_abi_var LIBDIR ${@}; } |
161 | get_abi_LIBDIR() { get_abi_var LIBDIR "$@"; } |
| 106 | |
162 | |
|
|
163 | # @FUNCTION: get_install_abis |
|
|
164 | # @DESCRIPTION: |
| 107 | # Return a list of the ABIs we want to install for with |
165 | # Return a list of the ABIs we want to install for with |
| 108 | # the last one in the list being the default. |
166 | # the last one in the list being the default. |
| 109 | get_abi_order() { |
167 | get_install_abis() { |
| 110 | local order="" |
168 | local order="" |
| 111 | |
169 | |
| 112 | if [ -z "${MULTILIB_ABIS}" ]; then |
170 | if [[ -z ${MULTILIB_ABIS} ]] ; then |
| 113 | echo "NOMULTILIB" |
171 | echo "default" |
| 114 | return 1 |
172 | return 0 |
| 115 | fi |
173 | fi |
| 116 | |
174 | |
| 117 | if hasq multilib-pkg-force ${RESTRICT} || |
175 | if [[ ${EMULTILIB_PKG} == "true" ]] ; then |
| 118 | { hasq multilib-pkg ${FEATURES} && hasq multilib-pkg ${RESTRICT}; }; then |
|
|
| 119 | for x in ${MULTILIB_ABIS}; do |
176 | for x in ${MULTILIB_ABIS} ; do |
| 120 | if [ "${x}" != "${DEFAULT_ABI}" ]; then |
177 | if [[ ${x} != "${DEFAULT_ABI}" ]] ; then |
| 121 | hasq ${x} ${ABI_DENY} || ordera="${ordera} ${x}" |
178 | has ${x} ${ABI_DENY} || order="${order} ${x}" |
| 122 | fi |
179 | fi |
| 123 | done |
180 | done |
| 124 | hasq ${DEFAULT_ABI} ${ABI_DENY} || order="${ordera} ${DEFAULT_ABI}" |
181 | has ${DEFAULT_ABI} ${ABI_DENY} || order="${order} ${DEFAULT_ABI}" |
| 125 | |
182 | |
| 126 | if [ -n "${ABI_ALLOW}" ]; then |
183 | if [[ -n ${ABI_ALLOW} ]] ; then |
| 127 | local ordera="" |
184 | local ordera="" |
| 128 | for x in ${order}; do |
185 | for x in ${order} ; do |
| 129 | if hasq ${x} ${ABI_ALLOW}; then |
186 | if has ${x} ${ABI_ALLOW} ; then |
| 130 | ordera="${ordera} ${x}" |
187 | ordera="${ordera} ${x}" |
| 131 | fi |
188 | fi |
| 132 | done |
189 | done |
| 133 | order="${ordera}" |
190 | order=${ordera} |
| 134 | fi |
191 | fi |
| 135 | else |
192 | else |
| 136 | order="${DEFAULT_ABI}" |
193 | order=${DEFAULT_ABI} |
| 137 | fi |
194 | fi |
| 138 | |
195 | |
| 139 | if [ -z "${order}" ]; then |
196 | 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." |
197 | 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 |
198 | fi |
| 142 | |
199 | |
| 143 | echo ${order} |
200 | echo ${order} |
| 144 | return 0 |
201 | return 0 |
| 145 | } |
202 | } |
| 146 | |
203 | |
| 147 | # get_all_libdir() |
204 | # @FUNCTION: get_all_abis |
|
|
205 | # @DESCRIPTION: |
|
|
206 | # Return a list of the ABIs supported by this profile. |
|
|
207 | # the last one in the list being the default. |
|
|
208 | get_all_abis() { |
|
|
209 | local order="" |
|
|
210 | |
|
|
211 | if [[ -z ${MULTILIB_ABIS} ]] ; then |
|
|
212 | echo "default" |
|
|
213 | return 0 |
|
|
214 | fi |
|
|
215 | |
|
|
216 | for x in ${MULTILIB_ABIS}; do |
|
|
217 | if [[ ${x} != ${DEFAULT_ABI} ]] ; then |
|
|
218 | order="${order:+${order} }${x}" |
|
|
219 | fi |
|
|
220 | done |
|
|
221 | order="${order:+${order} }${DEFAULT_ABI}" |
|
|
222 | |
|
|
223 | echo ${order} |
|
|
224 | return 0 |
|
|
225 | } |
|
|
226 | |
|
|
227 | # @FUNCTION: get_all_libdirs |
|
|
228 | # @DESCRIPTION: |
| 148 | # Returns a list of all the libdirs used by this profile. This includes |
229 | # Returns a list of all the libdirs used by this profile. This includes |
| 149 | # those that might not be touched by the current ebuild. |
230 | # those that might not be touched by the current ebuild and always includes |
|
|
231 | # "lib". |
| 150 | get_all_libdirs() { |
232 | get_all_libdirs() { |
| 151 | local libdirs="lib" |
233 | local libdirs |
| 152 | local abi |
234 | local abi |
| 153 | local dir |
235 | local dir |
| 154 | |
236 | |
| 155 | if [ -n "${MULTILIB_ABIS}" ]; then |
|
|
| 156 | for abi in ${MULTILIB_ABIS}; do |
237 | for abi in ${MULTILIB_ABIS}; do |
| 157 | [ "$(get_abi_LIBDIR ${abi})" != "lib" ] && libdirs="${libdirs} $(get_abi_LIBDIR ${abi})" |
238 | libdirs+=" $(get_abi_LIBDIR ${abi})" |
| 158 | done |
239 | done |
| 159 | elif [ -n "${CONF_LIBDIR}" ]; then |
240 | [[ " ${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 | |
241 | |
| 165 | echo "${libdirs}" |
242 | echo "${libdirs}" |
| 166 | } |
243 | } |
| 167 | |
244 | |
|
|
245 | # @FUNCTION: is_final_abi |
|
|
246 | # @DESCRIPTION: |
| 168 | # Return true if ${ABI} is the last ABI on our list (or if we're not |
247 | # 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 |
248 | # 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} |
249 | # if we're in the last (or only) run through src_{unpack,compile,install} |
| 171 | is_final_abi() { |
250 | is_final_abi() { |
| 172 | [ -z "${ABI}" ] && return 0 |
251 | has_multilib_profile || return 0 |
| 173 | local ALL_ABIS=$(get_abi_order) |
252 | set -- $(get_install_abis) |
| 174 | local LAST_ABI=${ALL_ABIS/* /} |
253 | local LAST_ABI=$# |
| 175 | [ "${LAST_ABI}" = "${ABI}" ] |
254 | [[ ${!LAST_ABI} == ${ABI} ]] |
| 176 | } |
255 | } |
| 177 | |
256 | |
|
|
257 | # @FUNCTION: number_abis |
|
|
258 | # @DESCRIPTION: |
| 178 | # echo the number of ABIs we will be installing for |
259 | # echo the number of ABIs we will be installing for |
| 179 | number_abis() { |
260 | number_abis() { |
| 180 | get_abi_order | wc -w |
261 | set -- `get_install_abis` |
|
|
262 | echo $# |
| 181 | } |
263 | } |
| 182 | |
264 | |
| 183 | # get_ml_incdir [<include dir> [<ABI>]] |
265 | # @FUNCTION: get_libname |
| 184 | # include dir defaults to /usr/include |
266 | # @USAGE: [version] |
| 185 | # ABI defaults to ${ABI} or ${DEFAULT_ABI} |
267 | # @DESCRIPTION: |
| 186 | get_ml_incdir() { |
268 | # Returns libname with proper suffix {.so,.dylib,.dll,etc} and optionally |
| 187 | local dir=/usr/include |
269 | # supplied version for the current platform identified by CHOST. |
|
|
270 | # |
|
|
271 | # Example: |
|
|
272 | # get_libname ${PV} |
|
|
273 | # Returns: .so.${PV} (ELF) || .${PV}.dylib (MACH) || ... |
|
|
274 | get_libname() { |
|
|
275 | local libname |
|
|
276 | local ver=$1 |
|
|
277 | case ${CHOST} in |
|
|
278 | *-cygwin|mingw*|*-mingw*) libname="dll";; |
|
|
279 | *-darwin*) libname="dylib";; |
|
|
280 | *-mint*) libname="irrelevant";; |
|
|
281 | hppa*-hpux*) libname="sl";; |
|
|
282 | *) libname="so";; |
|
|
283 | esac |
| 188 | |
284 | |
| 189 | if [[ ${#} -gt 0 ]]; then |
285 | if [[ -z $* ]] ; then |
| 190 | incdir=${1} |
286 | echo ".${libname}" |
| 191 | shift |
|
|
| 192 | fi |
|
|
| 193 | |
|
|
| 194 | if [[ -z "${MULTILIB_ABIS}" ]]; then |
|
|
| 195 | echo ${incdir} |
|
|
| 196 | return 0 |
|
|
| 197 | fi |
|
|
| 198 | |
|
|
| 199 | local abi=${ABI:-${DEFAULT_ABI}} |
|
|
| 200 | if [[ ${#} -gt 0 ]]; then |
|
|
| 201 | abi=${1} |
|
|
| 202 | shift |
|
|
| 203 | fi |
|
|
| 204 | |
|
|
| 205 | if [[ -d "${dir}/gentoo-multilib/${abi}" ]]; then |
|
|
| 206 | echo ${dir}/gentoo-multilib/${abi} |
|
|
| 207 | else |
287 | else |
| 208 | echo ${dir} |
288 | for ver in "$@" ; do |
|
|
289 | case ${CHOST} in |
|
|
290 | *-darwin*) echo ".${ver}.${libname}";; |
|
|
291 | *-mint*) echo ".${libname}";; |
|
|
292 | *) echo ".${libname}.${ver}";; |
|
|
293 | esac |
|
|
294 | done |
| 209 | fi |
295 | fi |
| 210 | } |
296 | } |
| 211 | |
297 | |
| 212 | # prep_ml_includes: |
298 | # @FUNCTION: get_modname |
| 213 | # |
299 | # @USAGE: |
| 214 | # Some includes (include/asm, glibc, etc) are ABI dependent. In this case, |
300 | # @DESCRIPTION: |
| 215 | # We can install them in different locations for each ABI and create a common |
301 | # Returns modulename with proper suffix {.so,.bundle,etc} for the current |
| 216 | # header which includes the right one based on CDEFINE_${ABI}. If your |
302 | # platform identified by CHOST. |
| 217 | # 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 |
|
|
| 219 | # files are installed in (default is /usr/include if none are passed). |
|
|
| 220 | # |
303 | # |
| 221 | # Example: |
304 | # Example: |
| 222 | # src_install() { |
305 | # libfoo$(get_modname) |
| 223 | # ... |
306 | # Returns: libfoo.so (ELF) || libfoo.bundle (MACH) || ... |
| 224 | # prep_ml_includes /usr/qt/3/include |
307 | get_modname() { |
| 225 | # } |
308 | local modname |
|
|
309 | local ver=$1 |
|
|
310 | case ${CHOST} in |
|
|
311 | *-darwin*) modname="bundle";; |
|
|
312 | *) modname="so";; |
|
|
313 | esac |
| 226 | |
314 | |
| 227 | prep_ml_includes() { |
315 | echo ".${modname}" |
| 228 | if [ $(number_abis) -gt 1 ]; then |
316 | } |
| 229 | local dir |
|
|
| 230 | local dirs |
|
|
| 231 | local base |
|
|
| 232 | |
317 | |
| 233 | if [ ${#} -eq 0 ]; then |
318 | # This is for the toolchain to setup profile variables when pulling in |
| 234 | dirs="/usr/include" |
319 | # a crosscompiler (and thus they aren't set in the profile) |
|
|
320 | multilib_env() { |
|
|
321 | local CTARGET=${1:-${CTARGET}} |
|
|
322 | |
|
|
323 | case ${CTARGET} in |
|
|
324 | x86_64*) |
|
|
325 | export CFLAGS_x86=${CFLAGS_x86--m32} |
|
|
326 | export CHOST_x86=${CTARGET/x86_64/i686} |
|
|
327 | export CTARGET_x86=${CHOST_x86} |
|
|
328 | if [[ ${SYMLINK_LIB} == "yes" ]] ; then |
|
|
329 | export LIBDIR_x86="lib32" |
| 235 | else |
330 | else |
| 236 | dirs="${@}" |
331 | export LIBDIR_x86="lib" |
| 237 | fi |
332 | fi |
| 238 | |
333 | |
| 239 | for dir in ${dirs}; do |
334 | export CFLAGS_amd64=${CFLAGS_amd64--m64} |
| 240 | base=${T}/gentoo-multilib/${dir}/gentoo-multilib |
335 | export CHOST_amd64=${CTARGET} |
| 241 | mkdir -p ${base} |
336 | export CTARGET_amd64=${CHOST_amd64} |
| 242 | [ -d ${base}/${ABI} ] && rm -rf ${base}/${ABI} |
337 | export LIBDIR_amd64="lib64" |
| 243 | mv ${D}/${dir} ${base}/${ABI} |
338 | |
|
|
339 | export CFLAGS_x32=${CFLAGS_x32--mx32} |
|
|
340 | export CHOST_x32=${CTARGET} |
|
|
341 | export CTARGET_x32=${CHOST_x32} |
|
|
342 | export LIBDIR_x32="libx32" |
|
|
343 | |
|
|
344 | : ${MULTILIB_ABIS=amd64 x86} |
|
|
345 | : ${DEFAULT_ABI=amd64} |
|
|
346 | ;; |
|
|
347 | mips64*) |
|
|
348 | export CFLAGS_o32=${CFLAGS_o32--mabi=32} |
|
|
349 | export CHOST_o32=${CTARGET/mips64/mips} |
|
|
350 | export CTARGET_o32=${CHOST_o32} |
|
|
351 | export LIBDIR_o32="lib" |
|
|
352 | |
|
|
353 | export CFLAGS_n32=${CFLAGS_n32--mabi=n32} |
|
|
354 | export CHOST_n32=${CTARGET} |
|
|
355 | export CTARGET_n32=${CHOST_n32} |
|
|
356 | export LIBDIR_n32="lib32" |
|
|
357 | |
|
|
358 | export CFLAGS_n64=${CFLAGS_n64--mabi=64} |
|
|
359 | export CHOST_n64=${CTARGET} |
|
|
360 | export CTARGET_n64=${CHOST_n64} |
|
|
361 | export LIBDIR_n64="lib64" |
|
|
362 | |
|
|
363 | : ${MULTILIB_ABIS=n64 n32 o32} |
|
|
364 | : ${DEFAULT_ABI=n32} |
|
|
365 | ;; |
|
|
366 | powerpc64*) |
|
|
367 | export CFLAGS_ppc=${CFLAGS_ppc--m32} |
|
|
368 | export CHOST_ppc=${CTARGET/powerpc64/powerpc} |
|
|
369 | export CTARGET_ppc=${CHOST_ppc} |
|
|
370 | export LIBDIR_ppc="lib" |
|
|
371 | |
|
|
372 | export CFLAGS_ppc64=${CFLAGS_ppc64--m64} |
|
|
373 | export CHOST_ppc64=${CTARGET} |
|
|
374 | export CTARGET_ppc64=${CHOST_ppc64} |
|
|
375 | export LIBDIR_ppc64="lib64" |
|
|
376 | |
|
|
377 | : ${MULTILIB_ABIS=ppc64 ppc} |
|
|
378 | : ${DEFAULT_ABI=ppc64} |
|
|
379 | ;; |
|
|
380 | s390x*) |
|
|
381 | export CFLAGS_s390=${CFLAGS_s390--m31} # the 31 is not a typo |
|
|
382 | export CHOST_s390=${CTARGET/s390x/s390} |
|
|
383 | export CTARGET_s390=${CHOST_s390} |
|
|
384 | export LIBDIR_s390="lib" |
|
|
385 | |
|
|
386 | export CFLAGS_s390x=${CFLAGS_s390x--m64} |
|
|
387 | export CHOST_s390x=${CTARGET} |
|
|
388 | export CTARGET_s390x=${CHOST_s390x} |
|
|
389 | export LIBDIR_s390x="lib64" |
|
|
390 | |
|
|
391 | : ${MULTILIB_ABIS=s390x s390} |
|
|
392 | : ${DEFAULT_ABI=s390x} |
|
|
393 | ;; |
|
|
394 | sparc*) |
|
|
395 | export CFLAGS_sparc32=${CFLAGS_sparc32} |
|
|
396 | export CHOST_sparc32=${CTARGET/sparc64/sparc} |
|
|
397 | export CTARGET_sparc32=${CHOST_sparc32} |
|
|
398 | export LIBDIR_sparc32="lib" |
|
|
399 | |
|
|
400 | export CFLAGS_sparc64=${CFLAGS_sparc64--m64} |
|
|
401 | export CHOST_sparc64=${CTARGET} |
|
|
402 | export CTARGET_sparc64=${CHOST_sparc64} |
|
|
403 | export LIBDIR_sparc64="lib64" |
|
|
404 | |
|
|
405 | : ${MULTILIB_ABIS=sparc64 sparc32} |
|
|
406 | : ${DEFAULT_ABI=sparc64} |
|
|
407 | ;; |
|
|
408 | *) |
|
|
409 | : ${MULTILIB_ABIS=default} |
|
|
410 | : ${DEFAULT_ABI=default} |
|
|
411 | ;; |
|
|
412 | esac |
|
|
413 | |
|
|
414 | export MULTILIB_ABIS DEFAULT_ABI |
|
|
415 | } |
|
|
416 | |
|
|
417 | # @FUNCTION: multilib_toolchain_setup |
|
|
418 | # @DESCRIPTION: |
|
|
419 | # Hide multilib details here for packages which are forced to be compiled for a |
|
|
420 | # specific ABI when run on another ABI (like x86-specific packages on amd64) |
|
|
421 | multilib_toolchain_setup() { |
|
|
422 | local v vv |
|
|
423 | |
|
|
424 | export ABI=$1 |
|
|
425 | |
|
|
426 | # First restore any saved state we have laying around. |
|
|
427 | if [[ ${__DEFAULT_ABI_SAVED} == "true" ]] ; then |
|
|
428 | for v in CHOST CBUILD AS CC CXX LD ; do |
|
|
429 | vv="__abi_saved_${v}" |
|
|
430 | export ${v}="${!vv}" |
|
|
431 | unset ${vv} |
| 244 | done |
432 | done |
| 245 | |
433 | unset __DEFAULT_ABI_SAVED |
| 246 | if is_final_abi; then |
|
|
| 247 | base=${T}/gentoo-multilib |
|
|
| 248 | pushd ${base} |
|
|
| 249 | find . | cpio -pmd --no-preserve-owner ${D} |
|
|
| 250 | popd |
|
|
| 251 | |
|
|
| 252 | for dir in ${dirs}; do |
|
|
| 253 | local args=${dir} |
|
|
| 254 | local abi |
|
|
| 255 | for abi in $(get_abi_order); do |
|
|
| 256 | args="${args} $(get_abi_CDEFINE ${abi}):${dir}/gentoo-multilib/${abi}" |
|
|
| 257 | done |
|
|
| 258 | create_ml_includes ${args} |
|
|
| 259 | done |
|
|
| 260 | fi |
434 | fi |
| 261 | fi |
|
|
| 262 | } |
|
|
| 263 | |
435 | |
| 264 | # If you need more control than prep_ml_includes can offer (like linux-headers |
436 | # We want to avoid the behind-the-back magic of gcc-config as it |
| 265 | # for the asm-* dirs, then use create_ml_includes. The firs argument is the |
437 | # screws up ccache and distcc. See #196243 for more info. |
| 266 | # common dir. The remaining args are of the form <symbol>:<dir> where |
438 | if [[ ${ABI} != ${DEFAULT_ABI} ]] ; then |
| 267 | # <symbol> is what is put in the #ifdef for choosing that dir. |
439 | # Back that multilib-ass up so we can restore it later |
| 268 | # |
440 | for v in CHOST CBUILD AS CC CXX LD ; do |
| 269 | # Ideas for this code came from debian's sparc-linux headers package. |
441 | export __abi_saved_${v}="${!v}" |
| 270 | # |
|
|
| 271 | # Example: |
|
|
| 272 | # 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 |
|
|
| 274 | create_ml_includes() { |
|
|
| 275 | local dest="${1}" |
|
|
| 276 | shift |
|
|
| 277 | local mlinfo="${@}" |
|
|
| 278 | local basedirs=$(create_ml_includes-listdirs ${mlinfo}) |
|
|
| 279 | |
|
|
| 280 | create_ml_includes-makedestdirs ${dest} ${basedirs} |
|
|
| 281 | |
|
|
| 282 | local file |
|
|
| 283 | for file in $(create_ml_includes-allfiles ${basedirs}); do |
|
|
| 284 | local name="$(echo $file | tr a-z A-Z | sed 's:[^A-Z]:_:g')" |
|
|
| 285 | { |
|
|
| 286 | echo "/* Common header file 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 | |
|
|
| 291 | local dir |
|
|
| 292 | for dir in ${basedirs}; do |
|
|
| 293 | 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 "" |
|
|
| 298 | fi |
|
|
| 299 | done |
|
|
| 300 | |
|
|
| 301 | #echo "#endif /* __CREATE_ML_INCLUDES_STUB_${name}__ */" |
|
|
| 302 | } > ${D}/${dest}/${file} |
|
|
| 303 | done |
|
|
| 304 | } |
|
|
| 305 | |
|
|
| 306 | # Helper function for create_ml_includes |
|
|
| 307 | create_ml_includes-relative_between() { |
|
|
| 308 | local src="$(create_ml_includes-tidy_path ${1})" |
|
|
| 309 | local dst="$(create_ml_includes-tidy_path ${2})" |
|
|
| 310 | |
|
|
| 311 | src=(${src//\// }) |
|
|
| 312 | dst=(${dst//\// }) |
|
|
| 313 | |
|
|
| 314 | local i |
|
|
| 315 | for ((i=0; i<${#src[*]}; i++)); do |
|
|
| 316 | [ "${dst[i]}" != "${src[i]}" ] && break |
|
|
| 317 | done |
|
|
| 318 | |
|
|
| 319 | local common=$i |
|
|
| 320 | |
|
|
| 321 | for ((i=${#src[*]}; i>common; i--)); do |
|
|
| 322 | echo -n ../ |
|
|
| 323 | done |
|
|
| 324 | |
|
|
| 325 | for ((i=common; i<${#dst[*]}-1; i++)); do |
|
|
| 326 | echo -n ${dst[i]}/ |
|
|
| 327 | done |
|
|
| 328 | |
|
|
| 329 | echo -n ${dst[i]} |
|
|
| 330 | } |
|
|
| 331 | |
|
|
| 332 | # Helper function for create_ml_includes |
|
|
| 333 | create_ml_includes-tidy_path() { |
|
|
| 334 | local removed="${1}" |
|
|
| 335 | |
|
|
| 336 | if [ -n "${removed}" ]; then |
|
|
| 337 | # Remove multiple slashes |
|
|
| 338 | while [ "${removed}" != "${removed/\/\//\/}" ]; do |
|
|
| 339 | removed=${removed/\/\//\/} |
|
|
| 340 | done |
442 | done |
|
|
443 | export __DEFAULT_ABI_SAVED="true" |
| 341 | |
444 | |
| 342 | # Remove . directories |
445 | # Set the CHOST native first so that we pick up the native |
| 343 | while [ "${removed}" != "${removed//\/.\//\/}" ]; do |
446 | # toolchain and not a cross-compiler by accident #202811. |
| 344 | removed=${removed//\/.\//\/} |
447 | export CHOST=$(get_abi_CHOST ${DEFAULT_ABI}) |
| 345 | done |
448 | export AS="$(tc-getAS) $(get_abi_ASFLAGS)" |
| 346 | [ "${removed##*/}" = "." ] && removed=${removed%/*} |
449 | export CC="$(tc-getCC) $(get_abi_CFLAGS)" |
| 347 | |
450 | export CXX="$(tc-getCXX) $(get_abi_CFLAGS)" |
| 348 | # Removed .. directories |
451 | export LD="$(tc-getLD) $(get_abi_LDFLAGS)" |
| 349 | while [ "${removed}" != "${removed//\/..\/}" ]; do |
452 | export CHOST=$(get_abi_CHOST $1) |
| 350 | local p1="${removed%%\/..\/*}" |
453 | export CBUILD=$(get_abi_CHOST $1) |
| 351 | local p2="${removed#*\/..\/}" |
|
|
| 352 | |
|
|
| 353 | removed="${p1%\/*}/${p2}" |
|
|
| 354 | done |
|
|
| 355 | |
|
|
| 356 | # Remove trailing .. |
|
|
| 357 | [ "${removed##*/}" = ".." ] && removed=${removed%/*/*} |
|
|
| 358 | |
|
|
| 359 | # Remove trailing / |
|
|
| 360 | [ "${removed##*/}" = "" ] && removed=${removed%/*} |
|
|
| 361 | |
|
|
| 362 | echo ${removed} |
|
|
| 363 | fi |
|
|
| 364 | } |
|
|
| 365 | |
|
|
| 366 | # Helper function for create_ml_includes |
|
|
| 367 | create_ml_includes-listdirs() { |
|
|
| 368 | local dirs |
|
|
| 369 | local data |
|
|
| 370 | for data in ${@}; do |
|
|
| 371 | dirs="${dirs} ${data/*:/}" |
|
|
| 372 | done |
|
|
| 373 | echo ${dirs:1} |
|
|
| 374 | } |
|
|
| 375 | |
|
|
| 376 | # Helper function for create_ml_includes |
|
|
| 377 | create_ml_includes-makedestdirs() { |
|
|
| 378 | local dest=${1} |
|
|
| 379 | shift |
|
|
| 380 | local basedirs=${@} |
|
|
| 381 | |
|
|
| 382 | dodir ${dest} |
|
|
| 383 | |
|
|
| 384 | local basedir |
|
|
| 385 | for basedir in ${basedirs}; do |
|
|
| 386 | local dir |
|
|
| 387 | for dir in $(find ${D}/${basedir} -type d); do |
|
|
| 388 | dodir ${dest}/${dir/${D}\/${basedir}/} |
|
|
| 389 | done |
|
|
| 390 | done |
|
|
| 391 | } |
|
|
| 392 | |
|
|
| 393 | # Helper function for create_ml_includes |
|
|
| 394 | create_ml_includes-allfiles() { |
|
|
| 395 | local basedirs=${@} |
|
|
| 396 | |
|
|
| 397 | local basedir |
|
|
| 398 | for basedir in ${basedirs}; do |
|
|
| 399 | local file |
|
|
| 400 | for file in $(find ${D}/${basedir} -type f); do |
|
|
| 401 | echo ${file/${D}\/${basedir}\//} |
|
|
| 402 | done |
|
|
| 403 | done | sort | uniq |
|
|
| 404 | } |
|
|
| 405 | |
|
|
| 406 | # Helper function for create_ml_includes |
|
|
| 407 | create_ml_includes-sym_for_dir() { |
|
|
| 408 | local dir="${1}" |
|
|
| 409 | shift |
|
|
| 410 | local data |
|
|
| 411 | for data in ${@}; do |
|
|
| 412 | if [ "${dir}" = "${data/*:/}" ]; then |
|
|
| 413 | echo ${data/:*/} |
|
|
| 414 | return 0 |
|
|
| 415 | fi |
454 | fi |
| 416 | done |
|
|
| 417 | echo "Shouldn't be here -- create_ml_includes-sym_for_dir ${1} ${@}" |
|
|
| 418 | # exit because we'll likely be called from a subshell |
|
|
| 419 | exit 1 |
|
|
| 420 | } |
455 | } |