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