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