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