| 1 | # Copyright 1999-2007 Gentoo Foundation |
1 | # Copyright 1999-2012 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/toolchain-funcs.eclass,v 1.106 2011/09/09 19:14:19 vapier Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.118 2012/09/27 19:34:28 axs Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: toolchain-funcs.eclass |
5 | # @ECLASS: toolchain-funcs.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Toolchain Ninjas <toolchain@gentoo.org> |
7 | # Toolchain Ninjas <toolchain@gentoo.org> |
| 8 | # @BLURB: functions to query common info about the toolchain |
8 | # @BLURB: functions to query common info about the toolchain |
| … | |
… | |
| 11 | # for gleaning useful information about the toolchain and to simplify |
11 | # for gleaning useful information about the toolchain and to simplify |
| 12 | # ugly things like cross-compiling and multilib. All of this is done |
12 | # ugly things like cross-compiling and multilib. All of this is done |
| 13 | # in such a way that you can rely on the function always returning |
13 | # in such a way that you can rely on the function always returning |
| 14 | # something sane. |
14 | # something sane. |
| 15 | |
15 | |
| 16 | ___ECLASS_RECUR_TOOLCHAIN_FUNCS="yes" |
16 | if [[ ${___ECLASS_ONCE_TOOLCHAIN_FUNCS} != "recur -_+^+_- spank" ]] ; then |
| 17 | [[ -z ${___ECLASS_RECUR_MULTILIB} ]] && inherit multilib |
17 | ___ECLASS_ONCE_TOOLCHAIN_FUNCS="recur -_+^+_- spank" |
| 18 | |
18 | |
| 19 | DESCRIPTION="Based on the ${ECLASS} eclass" |
19 | inherit multilib |
| 20 | |
20 | |
| 21 | # tc-getPROG <VAR [search vars]> <default> [tuple] |
21 | # tc-getPROG <VAR [search vars]> <default> [tuple] |
| 22 | _tc-getPROG() { |
22 | _tc-getPROG() { |
| 23 | local tuple=$1 |
23 | local tuple=$1 |
| 24 | local v var vars=$2 |
24 | local v var vars=$2 |
| … | |
… | |
| 39 | [[ -n ${search} ]] && prog=${search##*/} |
39 | [[ -n ${search} ]] && prog=${search##*/} |
| 40 | |
40 | |
| 41 | export ${var}=${prog} |
41 | export ${var}=${prog} |
| 42 | echo "${!var}" |
42 | echo "${!var}" |
| 43 | } |
43 | } |
| 44 | tc-getBUILD_PROG() { _tc-getPROG CBUILD "$@"; } |
44 | tc-getBUILD_PROG() { _tc-getPROG CBUILD "BUILD_$1 $1_FOR_BUILD HOST$1" "${@:2}"; } |
| 45 | tc-getPROG() { _tc-getPROG CHOST "$@"; } |
45 | tc-getPROG() { _tc-getPROG CHOST "$@"; } |
| 46 | |
46 | |
| 47 | # @FUNCTION: tc-getAR |
47 | # @FUNCTION: tc-getAR |
| 48 | # @USAGE: [toolchain prefix] |
48 | # @USAGE: [toolchain prefix] |
| 49 | # @RETURN: name of the archiver |
49 | # @RETURN: name of the archiver |
| … | |
… | |
| 107 | # @FUNCTION: tc-getDLLWRAP |
107 | # @FUNCTION: tc-getDLLWRAP |
| 108 | # @USAGE: [toolchain prefix] |
108 | # @USAGE: [toolchain prefix] |
| 109 | # @RETURN: name of the Windows dllwrap utility |
109 | # @RETURN: name of the Windows dllwrap utility |
| 110 | tc-getDLLWRAP() { tc-getPROG DLLWRAP dllwrap "$@"; } |
110 | tc-getDLLWRAP() { tc-getPROG DLLWRAP dllwrap "$@"; } |
| 111 | |
111 | |
|
|
112 | # @FUNCTION: tc-getBUILD_AR |
|
|
113 | # @USAGE: [toolchain prefix] |
|
|
114 | # @RETURN: name of the archiver for building binaries to run on the build machine |
|
|
115 | tc-getBUILD_AR() { tc-getBUILD_PROG AR ar "$@"; } |
|
|
116 | # @FUNCTION: tc-getBUILD_AS |
|
|
117 | # @USAGE: [toolchain prefix] |
|
|
118 | # @RETURN: name of the assembler for building binaries to run on the build machine |
|
|
119 | tc-getBUILD_AS() { tc-getBUILD_PROG AS as "$@"; } |
| 112 | # @FUNCTION: tc-getBUILD_CC |
120 | # @FUNCTION: tc-getBUILD_CC |
| 113 | # @USAGE: [toolchain prefix] |
121 | # @USAGE: [toolchain prefix] |
| 114 | # @RETURN: name of the C compiler for building binaries to run on the build machine |
122 | # @RETURN: name of the C compiler for building binaries to run on the build machine |
| 115 | tc-getBUILD_CC() { tc-getBUILD_PROG "BUILD_CC CC_FOR_BUILD HOSTCC" gcc "$@"; } |
123 | tc-getBUILD_CC() { tc-getBUILD_PROG CC gcc "$@"; } |
| 116 | # @FUNCTION: tc-getBUILD_CPP |
124 | # @FUNCTION: tc-getBUILD_CPP |
| 117 | # @USAGE: [toolchain prefix] |
125 | # @USAGE: [toolchain prefix] |
| 118 | # @RETURN: name of the C preprocessor for building binaries to run on the build machine |
126 | # @RETURN: name of the C preprocessor for building binaries to run on the build machine |
| 119 | tc-getBUILD_CPP() { tc-getBUILD_PROG "BUILD_CPP CPP_FOR_BUILD HOSTCPP" cpp "$@"; } |
127 | tc-getBUILD_CPP() { tc-getBUILD_PROG CPP cpp "$@"; } |
| 120 | # @FUNCTION: tc-getBUILD_CXX |
128 | # @FUNCTION: tc-getBUILD_CXX |
| 121 | # @USAGE: [toolchain prefix] |
129 | # @USAGE: [toolchain prefix] |
| 122 | # @RETURN: name of the C++ compiler for building binaries to run on the build machine |
130 | # @RETURN: name of the C++ compiler for building binaries to run on the build machine |
| 123 | tc-getBUILD_CXX() { tc-getBUILD_PROG "BUILD_CXX CXX_FOR_BUILD HOSTCXX" g++ "$@"; } |
131 | tc-getBUILD_CXX() { tc-getBUILD_PROG CXX g++ "$@"; } |
|
|
132 | # @FUNCTION: tc-getBUILD_LD |
|
|
133 | # @USAGE: [toolchain prefix] |
|
|
134 | # @RETURN: name of the linker for building binaries to run on the build machine |
|
|
135 | tc-getBUILD_LD() { tc-getBUILD_PROG LD ld "$@"; } |
|
|
136 | # @FUNCTION: tc-getBUILD_STRIP |
|
|
137 | # @USAGE: [toolchain prefix] |
|
|
138 | # @RETURN: name of the strip program for building binaries to run on the build machine |
|
|
139 | tc-getBUILD_STRIP() { tc-getBUILD_PROG STRIP strip "$@"; } |
|
|
140 | # @FUNCTION: tc-getBUILD_NM |
|
|
141 | # @USAGE: [toolchain prefix] |
|
|
142 | # @RETURN: name of the symbol/object thingy for building binaries to run on the build machine |
|
|
143 | tc-getBUILD_NM() { tc-getBUILD_PROG NM nm "$@"; } |
|
|
144 | # @FUNCTION: tc-getBUILD_RANLIB |
|
|
145 | # @USAGE: [toolchain prefix] |
|
|
146 | # @RETURN: name of the archiver indexer for building binaries to run on the build machine |
|
|
147 | tc-getBUILD_RANLIB() { tc-getBUILD_PROG RANLIB ranlib "$@"; } |
|
|
148 | # @FUNCTION: tc-getBUILD_OBJCOPY |
|
|
149 | # @USAGE: [toolchain prefix] |
|
|
150 | # @RETURN: name of the object copier for building binaries to run on the build machine |
|
|
151 | tc-getBUILD_OBJCOPY() { tc-getBUILD_PROG OBJCOPY objcopy "$@"; } |
|
|
152 | # @FUNCTION: tc-getBUILD_PKG_CONFIG |
|
|
153 | # @USAGE: [toolchain prefix] |
|
|
154 | # @RETURN: name of the pkg-config tool for building binaries to run on the build machine |
|
|
155 | tc-getBUILD_PKG_CONFIG() { tc-getBUILD_PROG PKG_CONFIG pkg-config "$@"; } |
| 124 | |
156 | |
| 125 | # @FUNCTION: tc-export |
157 | # @FUNCTION: tc-export |
| 126 | # @USAGE: <list of toolchain variables> |
158 | # @USAGE: <list of toolchain variables> |
| 127 | # @DESCRIPTION: |
159 | # @DESCRIPTION: |
| 128 | # Quick way to export a bunch of compiler vars at once. |
160 | # Quick way to export a bunch of compiler vars at once. |
| … | |
… | |
| 143 | # @FUNCTION: tc-is-softfloat |
175 | # @FUNCTION: tc-is-softfloat |
| 144 | # @DESCRIPTION: |
176 | # @DESCRIPTION: |
| 145 | # See if this toolchain is a softfloat based one. |
177 | # See if this toolchain is a softfloat based one. |
| 146 | # @CODE |
178 | # @CODE |
| 147 | # The possible return values: |
179 | # The possible return values: |
| 148 | # - only: the target is always softfloat (never had fpu) |
180 | # - only: the target is always softfloat (never had fpu) |
| 149 | # - yes: the target should support softfloat |
181 | # - yes: the target should support softfloat |
|
|
182 | # - softfp: (arm specific) the target should use hardfloat insns, but softfloat calling convention |
| 150 | # - no: the target doesn't support softfloat |
183 | # - no: the target doesn't support softfloat |
| 151 | # @CODE |
184 | # @CODE |
| 152 | # This allows us to react differently where packages accept |
185 | # This allows us to react differently where packages accept |
| 153 | # softfloat flags in the case where support is optional, but |
186 | # softfloat flags in the case where support is optional, but |
| 154 | # rejects softfloat flags where the target always lacks an fpu. |
187 | # rejects softfloat flags where the target always lacks an fpu. |
| 155 | tc-is-softfloat() { |
188 | tc-is-softfloat() { |
|
|
189 | local CTARGET=${CTARGET:-${CHOST}} |
| 156 | case ${CTARGET} in |
190 | case ${CTARGET} in |
| 157 | bfin*|h8300*) |
191 | bfin*|h8300*) |
| 158 | echo "only" ;; |
192 | echo "only" ;; |
| 159 | *) |
193 | *) |
| 160 | [[ ${CTARGET//_/-} == *-softfloat-* ]] \ |
194 | if [[ ${CTARGET//_/-} == *-softfloat-* ]] ; then |
| 161 | && echo "yes" \ |
195 | echo "yes" |
|
|
196 | elif [[ ${CTARGET//_/-} == *-softfp-* ]] ; then |
|
|
197 | echo "softfp" |
|
|
198 | else |
| 162 | || echo "no" |
199 | echo "no" |
|
|
200 | fi |
| 163 | ;; |
201 | ;; |
| 164 | esac |
202 | esac |
| 165 | } |
|
|
| 166 | |
|
|
| 167 | # @FUNCTION: tc-is-hardfloat |
|
|
| 168 | # @DESCRIPTION: |
|
|
| 169 | # See if this toolchain is a hardfloat based one. |
|
|
| 170 | # @CODE |
|
|
| 171 | # The possible return values: |
|
|
| 172 | # - yes: the target should support hardfloat |
|
|
| 173 | # - no: the target doesn't support hardfloat |
|
|
| 174 | tc-is-hardfloat() { |
|
|
| 175 | [[ ${CTARGET//_/-} == *-hardfloat-* ]] \ |
|
|
| 176 | && echo "yes" \ |
|
|
| 177 | || echo "no" |
|
|
| 178 | } |
203 | } |
| 179 | |
204 | |
| 180 | # @FUNCTION: tc-is-static-only |
205 | # @FUNCTION: tc-is-static-only |
| 181 | # @DESCRIPTION: |
206 | # @DESCRIPTION: |
| 182 | # Return shell true if the target does not support shared libs, shell false |
207 | # Return shell true if the target does not support shared libs, shell false |
| … | |
… | |
| 184 | tc-is-static-only() { |
209 | tc-is-static-only() { |
| 185 | local host=${CTARGET:-${CHOST}} |
210 | local host=${CTARGET:-${CHOST}} |
| 186 | |
211 | |
| 187 | # *MiNT doesn't have shared libraries, only platform so far |
212 | # *MiNT doesn't have shared libraries, only platform so far |
| 188 | return $([[ ${host} == *-mint* ]]) |
213 | return $([[ ${host} == *-mint* ]]) |
|
|
214 | } |
|
|
215 | |
|
|
216 | # @FUNCTION: tc-export_build_env |
|
|
217 | # @USAGE: [compiler variables] |
|
|
218 | # @DESCRIPTION: |
|
|
219 | # Export common build related compiler settings. |
|
|
220 | tc-export_build_env() { |
|
|
221 | tc-export "$@" |
|
|
222 | : ${BUILD_CFLAGS:=-O1 -pipe} |
|
|
223 | : ${BUILD_CXXFLAGS:=-O1 -pipe} |
|
|
224 | : ${BUILD_CPPFLAGS:=} |
|
|
225 | : ${BUILD_LDFLAGS:=} |
|
|
226 | export BUILD_{C,CXX,CPP,LD}FLAGS |
|
|
227 | } |
|
|
228 | |
|
|
229 | # @FUNCTION: tc-env_build |
|
|
230 | # @USAGE: <command> [command args] |
|
|
231 | # @INTERNAL |
|
|
232 | # @DESCRIPTION: |
|
|
233 | # Setup the compile environment to the build tools and then execute the |
|
|
234 | # specified command. We use tc-getBUILD_XX here so that we work with |
|
|
235 | # all of the semi-[non-]standard env vars like $BUILD_CC which often |
|
|
236 | # the target build system does not check. |
|
|
237 | tc-env_build() { |
|
|
238 | tc-export_build_env |
|
|
239 | CFLAGS=${BUILD_CFLAGS} \ |
|
|
240 | CXXFLAGS=${BUILD_CXXFLAGS} \ |
|
|
241 | CPPFLAGS=${BUILD_CPPFLAGS} \ |
|
|
242 | LDFLAGS=${BUILD_LDFLAGS} \ |
|
|
243 | AR=$(tc-getBUILD_AR) \ |
|
|
244 | AS=$(tc-getBUILD_AS) \ |
|
|
245 | CC=$(tc-getBUILD_CC) \ |
|
|
246 | CPP=$(tc-getBUILD_CPP) \ |
|
|
247 | CXX=$(tc-getBUILD_CXX) \ |
|
|
248 | LD=$(tc-getBUILD_LD) \ |
|
|
249 | NM=$(tc-getBUILD_NM) \ |
|
|
250 | PKG_CONFIG=$(tc-getBUILD_PKG_CONFIG) \ |
|
|
251 | RANLIB=$(tc-getBUILD_RANLIB) \ |
|
|
252 | "$@" |
|
|
253 | } |
|
|
254 | |
|
|
255 | # @FUNCTION: econf_build |
|
|
256 | # @USAGE: [econf flags] |
|
|
257 | # @DESCRIPTION: |
|
|
258 | # Sometimes we need to locally build up some tools to run on CBUILD because |
|
|
259 | # the package has helper utils which are compiled+executed when compiling. |
|
|
260 | # This won't work when cross-compiling as the CHOST is set to a target which |
|
|
261 | # we cannot natively execute. |
|
|
262 | # |
|
|
263 | # For example, the python package will build up a local python binary using |
|
|
264 | # a portable build system (configure+make), but then use that binary to run |
|
|
265 | # local python scripts to build up other components of the overall python. |
|
|
266 | # We cannot rely on the python binary in $PATH as that often times will be |
|
|
267 | # a different version, or not even installed in the first place. Instead, |
|
|
268 | # we compile the code in a different directory to run on CBUILD, and then |
|
|
269 | # use that binary when compiling the main package to run on CHOST. |
|
|
270 | # |
|
|
271 | # For example, with newer EAPIs, you'd do something like: |
|
|
272 | # @CODE |
|
|
273 | # src_configure() { |
|
|
274 | # ECONF_SOURCE=${S} |
|
|
275 | # if tc-is-cross-compiler ; then |
|
|
276 | # mkdir "${WORKDIR}"/${CBUILD} |
|
|
277 | # pushd "${WORKDIR}"/${CBUILD} >/dev/null |
|
|
278 | # econf_build --disable-some-unused-stuff |
|
|
279 | # popd >/dev/null |
|
|
280 | # fi |
|
|
281 | # ... normal build paths ... |
|
|
282 | # } |
|
|
283 | # src_compile() { |
|
|
284 | # if tc-is-cross-compiler ; then |
|
|
285 | # pushd "${WORKDIR}"/${CBUILD} >/dev/null |
|
|
286 | # emake one-or-two-build-tools |
|
|
287 | # ln/mv build-tools to normal build paths in ${S}/ |
|
|
288 | # popd >/dev/null |
|
|
289 | # fi |
|
|
290 | # ... normal build paths ... |
|
|
291 | # } |
|
|
292 | # @CODE |
|
|
293 | econf_build() { |
|
|
294 | tc-env_build econf --build=${CBUILD:-${CHOST}} "$@" |
| 189 | } |
295 | } |
| 190 | |
296 | |
| 191 | # @FUNCTION: tc-has-openmp |
297 | # @FUNCTION: tc-has-openmp |
| 192 | # @USAGE: [toolchain prefix] |
298 | # @USAGE: [toolchain prefix] |
| 193 | # @DESCRIPTION: |
299 | # @DESCRIPTION: |
| … | |
… | |
| 249 | |
355 | |
| 250 | local type=$1 |
356 | local type=$1 |
| 251 | local host=$2 |
357 | local host=$2 |
| 252 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
358 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 253 | |
359 | |
|
|
360 | local KV=${KV:-${KV_FULL}} |
|
|
361 | [[ -z ${KV} ]] && die "toolchain-funcs.eclass: Kernel version could not be determined, please inherit kernel-2 or linux-info" |
|
|
362 | |
| 254 | case ${host} in |
363 | case ${host} in |
|
|
364 | aarch64*) ninj aarch64 arm;; |
| 255 | alpha*) echo alpha;; |
365 | alpha*) echo alpha;; |
| 256 | arm*) echo arm;; |
366 | arm*) echo arm;; |
| 257 | avr*) ninj avr32 avr;; |
367 | avr*) ninj avr32 avr;; |
| 258 | bfin*) ninj blackfin bfin;; |
368 | bfin*) ninj blackfin bfin;; |
| 259 | cris*) echo cris;; |
369 | cris*) echo cris;; |
| … | |
… | |
| 336 | local host=$1 |
446 | local host=$1 |
| 337 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
447 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
| 338 | host=${host%%-*} |
448 | host=${host%%-*} |
| 339 | |
449 | |
| 340 | case ${host} in |
450 | case ${host} in |
|
|
451 | aarch64*be) echo big;; |
|
|
452 | aarch64) echo little;; |
| 341 | alpha*) echo big;; |
453 | alpha*) echo big;; |
| 342 | arm*b*) echo big;; |
454 | arm*b*) echo big;; |
| 343 | arm*) echo little;; |
455 | arm*) echo little;; |
| 344 | cris*) echo little;; |
456 | cris*) echo little;; |
| 345 | hppa*) echo big;; |
457 | hppa*) echo big;; |
| … | |
… | |
| 502 | local lib libdir=$(get_libdir) output_format="" auto=false suffix=$(get_libname) |
614 | local lib libdir=$(get_libdir) output_format="" auto=false suffix=$(get_libname) |
| 503 | [[ -z ${ED+set} ]] && local ED=${D%/}${EPREFIX}/ |
615 | [[ -z ${ED+set} ]] && local ED=${D%/}${EPREFIX}/ |
| 504 | |
616 | |
| 505 | tc-is-static-only && return |
617 | tc-is-static-only && return |
| 506 | |
618 | |
|
|
619 | # Eventually we'd like to get rid of this func completely #417451 |
|
|
620 | case ${CTARGET:-${CHOST}} in |
|
|
621 | *-darwin*) ;; |
|
|
622 | *linux*|*-freebsd*|*-openbsd*|*-netbsd*) |
|
|
623 | use prefix && return 0 ;; |
|
|
624 | *) return 0 ;; |
|
|
625 | esac |
|
|
626 | |
| 507 | # Just make sure it exists |
627 | # Just make sure it exists |
| 508 | dodir /usr/${libdir} |
628 | dodir /usr/${libdir} |
| 509 | |
629 | |
| 510 | if [[ $1 == "-a" ]] ; then |
630 | if [[ $1 == "-a" ]] ; then |
| 511 | auto=true |
631 | auto=true |
| … | |
… | |
| 568 | # understand linker scripts, just create a symlink. |
688 | # understand linker scripts, just create a symlink. |
| 569 | pushd "${ED}/usr/${libdir}" > /dev/null |
689 | pushd "${ED}/usr/${libdir}" > /dev/null |
| 570 | ln -snf "../../${libdir}/${tlib}" "${lib}" |
690 | ln -snf "../../${libdir}/${tlib}" "${lib}" |
| 571 | popd > /dev/null |
691 | popd > /dev/null |
| 572 | ;; |
692 | ;; |
| 573 | *-aix*|*-irix*|*64*-hpux*|*-interix*|*-winnt*) |
|
|
| 574 | if ${auto} ; then |
|
|
| 575 | mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die |
|
|
| 576 | # no way to retrieve soname on these platforms (?) |
|
|
| 577 | tlib=$(readlink "${ED}"/${libdir}/${lib}) |
|
|
| 578 | tlib=${tlib##*/} |
|
|
| 579 | if [[ -z ${tlib} ]] ; then |
|
|
| 580 | # ok, apparently was not a symlink, don't remove it and |
|
|
| 581 | # just link to it |
|
|
| 582 | tlib=${lib} |
|
|
| 583 | else |
|
|
| 584 | rm -f "${ED}"/${libdir}/${lib} |
|
|
| 585 | fi |
|
|
| 586 | else |
|
|
| 587 | tlib=${lib} |
|
|
| 588 | fi |
|
|
| 589 | |
|
|
| 590 | # we don't have GNU binutils on these platforms, so we symlink |
|
|
| 591 | # instead, which seems to work fine. Keep it relative, otherwise |
|
|
| 592 | # we break some QA checks in Portage |
|
|
| 593 | # on interix, the linker scripts would work fine in _most_ |
|
|
| 594 | # situations. if a library links to such a linker script the |
|
|
| 595 | # absolute path to the correct library is inserted into the binary, |
|
|
| 596 | # which is wrong, since anybody linking _without_ libtool will miss |
|
|
| 597 | # some dependencies, since the stupid linker cannot find libraries |
|
|
| 598 | # hardcoded with absolute paths (as opposed to the loader, which |
|
|
| 599 | # seems to be able to do this). |
|
|
| 600 | # this has been seen while building shared-mime-info which needs |
|
|
| 601 | # libxml2, but links without libtool (and does not add libz to the |
|
|
| 602 | # command line by itself). |
|
|
| 603 | pushd "${ED}/usr/${libdir}" > /dev/null |
|
|
| 604 | ln -snf "../../${libdir}/${tlib}" "${lib}" |
|
|
| 605 | popd > /dev/null |
|
|
| 606 | ;; |
|
|
| 607 | hppa*-hpux*) # PA-RISC 32bit (SOM) only, others (ELF) match *64*-hpux* above. |
|
|
| 608 | if ${auto} ; then |
|
|
| 609 | tlib=$(chatr "${ED}"/usr/${libdir}/${lib} | sed -n '/internal name:/{n;s/^ *//;p;q}') |
|
|
| 610 | [[ -z ${tlib} ]] && tlib=${lib} |
|
|
| 611 | tlib=${tlib##*/} # 'internal name' can have a path component |
|
|
| 612 | mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die |
|
|
| 613 | # some SONAMEs are funky: they encode a version before the .so |
|
|
| 614 | if [[ ${tlib} != ${lib}* ]] ; then |
|
|
| 615 | mv "${ED}"/usr/${libdir}/${tlib}* "${ED}"/${libdir}/ || die |
|
|
| 616 | fi |
|
|
| 617 | [[ ${tlib} != ${lib} ]] && |
|
|
| 618 | rm -f "${ED}"/${libdir}/${lib} |
|
|
| 619 | else |
|
|
| 620 | tlib=$(chatr "${ED}"/${libdir}/${lib} | sed -n '/internal name:/{n;s/^ *//;p;q}') |
|
|
| 621 | [[ -z ${tlib} ]] && tlib=${lib} |
|
|
| 622 | tlib=${tlib##*/} # 'internal name' can have a path component |
|
|
| 623 | fi |
|
|
| 624 | pushd "${ED}"/usr/${libdir} >/dev/null |
|
|
| 625 | ln -snf "../../${libdir}/${tlib}" "${lib}" |
|
|
| 626 | # need the internal name in usr/lib too, to be available at runtime |
|
|
| 627 | # when linked with /path/to/lib.sl (hardcode_direct_absolute=yes) |
|
|
| 628 | [[ ${tlib} != ${lib} ]] && |
|
|
| 629 | ln -snf "../../${libdir}/${tlib}" "${tlib}" |
|
|
| 630 | popd >/dev/null |
|
|
| 631 | ;; |
|
|
| 632 | *) |
693 | *) |
| 633 | if ${auto} ; then |
694 | if ${auto} ; then |
| 634 | tlib=$(scanelf -qF'%S#F' "${ED}"/usr/${libdir}/${lib}) |
695 | tlib=$(scanelf -qF'%S#F' "${ED}"/usr/${libdir}/${lib}) |
| 635 | [[ -z ${tlib} ]] && die "unable to read SONAME from ${lib}" |
696 | [[ -z ${tlib} ]] && die "unable to read SONAME from ${lib}" |
| 636 | mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die |
697 | mv "${ED}"/usr/${libdir}/${lib}* "${ED}"/${libdir}/ || die |
| … | |
… | |
| 658 | ;; |
719 | ;; |
| 659 | esac |
720 | esac |
| 660 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
721 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
| 661 | done |
722 | done |
| 662 | } |
723 | } |
|
|
724 | |
|
|
725 | fi |