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