1 | # Copyright 1999-2005 Gentoo Foundation |
1 | # Copyright 1999-2007 Gentoo Foundation |
2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.34 2005/03/10 22:43:11 eradicator Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-funcs.eclass,v 1.73 2007/07/22 19:59:48 vapier Exp $ |
4 | # |
4 | # |
5 | # Author: Toolchain Ninjas <ninjas@gentoo.org> |
5 | # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> |
6 | # |
6 | # |
7 | # This eclass contains (or should) functions to get common info |
7 | # This eclass contains (or should) functions to get common info |
8 | # about the toolchain (libc/compiler/binutils/etc...) |
8 | # about the toolchain (libc/compiler/binutils/etc...) |
9 | |
9 | |
10 | inherit multilib |
10 | ___ECLASS_RECUR_TOOLCHAIN_FUNCS="yes" |
11 | |
11 | [[ -z ${___ECLASS_RECUR_MULTILIB} ]] && inherit multilib |
12 | ECLASS=toolchain-funcs |
|
|
13 | INHERITED="$INHERITED $ECLASS" |
|
|
14 | |
12 | |
15 | DESCRIPTION="Based on the ${ECLASS} eclass" |
13 | DESCRIPTION="Based on the ${ECLASS} eclass" |
16 | |
14 | |
17 | tc-getPROG() { |
15 | tc-getPROG() { |
18 | local var=$1 |
16 | local var=$1 |
… | |
… | |
21 | if [[ -n ${!var} ]] ; then |
19 | if [[ -n ${!var} ]] ; then |
22 | echo "${!var}" |
20 | echo "${!var}" |
23 | return 0 |
21 | return 0 |
24 | fi |
22 | fi |
25 | |
23 | |
26 | local chost=$3 |
24 | local search= |
27 | [[ -z ${chost} ]] && chost=$(get_abi_CHOST) |
25 | [[ -n $3 ]] && search=$(type -p "$3-${prog}") |
28 | [[ -z ${chost} ]] && chost=${CHOST} |
26 | [[ -z ${search} && -n ${CHOST} ]] && search=$(type -p "${CHOST}-${prog}") |
29 | |
|
|
30 | if [[ -n ${chost} ]] ; then |
|
|
31 | local search=$(type -p "${chost}-${prog}") |
|
|
32 | [[ -n ${search} ]] && prog=${search##*/} |
27 | [[ -n ${search} ]] && prog=${search##*/} |
33 | fi |
|
|
34 | |
28 | |
35 | export ${var}=${prog} |
29 | export ${var}=${prog} |
36 | echo "${!var}" |
30 | echo "${!var}" |
37 | } |
31 | } |
38 | |
32 | |
… | |
… | |
40 | tc-getAR() { tc-getPROG AR ar "$@"; } |
34 | tc-getAR() { tc-getPROG AR ar "$@"; } |
41 | # Returns the name of the assembler |
35 | # Returns the name of the assembler |
42 | tc-getAS() { tc-getPROG AS as "$@"; } |
36 | tc-getAS() { tc-getPROG AS as "$@"; } |
43 | # Returns the name of the C compiler |
37 | # Returns the name of the C compiler |
44 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
38 | tc-getCC() { tc-getPROG CC gcc "$@"; } |
|
|
39 | # Returns the name of the C preprocessor |
|
|
40 | tc-getCPP() { tc-getPROG CPP cpp "$@"; } |
45 | # Returns the name of the C++ compiler |
41 | # Returns the name of the C++ compiler |
46 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
42 | tc-getCXX() { tc-getPROG CXX g++ "$@"; } |
47 | # Returns the name of the linker |
43 | # Returns the name of the linker |
48 | tc-getLD() { tc-getPROG LD ld "$@"; } |
44 | tc-getLD() { tc-getPROG LD ld "$@"; } |
|
|
45 | # Returns the name of the strip prog |
|
|
46 | tc-getSTRIP() { tc-getPROG STRIP strip "$@"; } |
49 | # Returns the name of the symbol/object thingy |
47 | # Returns the name of the symbol/object thingy |
50 | tc-getNM() { tc-getPROG NM nm "$@"; } |
48 | tc-getNM() { tc-getPROG NM nm "$@"; } |
51 | # Returns the name of the archiver indexer |
49 | # Returns the name of the archiver indexer |
52 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
50 | tc-getRANLIB() { tc-getPROG RANLIB ranlib "$@"; } |
|
|
51 | # Returns the name of the fortran 77 compiler |
|
|
52 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
|
|
53 | # Returns the name of the fortran 90 compiler |
|
|
54 | tc-getF90() { tc-getPROG F90 gfortran "$@"; } |
53 | # Returns the name of the fortran compiler |
55 | # Returns the name of the fortran compiler |
54 | tc-getF77() { tc-getPROG F77 f77 "$@"; } |
56 | tc-getFORTRAN() { tc-getPROG FORTRAN gfortran "$@"; } |
55 | # Returns the name of the java compiler |
57 | # Returns the name of the java compiler |
56 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
58 | tc-getGCJ() { tc-getPROG GCJ gcj "$@"; } |
57 | |
59 | |
58 | # Returns the name of the C compiler for build |
60 | # Returns the name of the C compiler for build |
59 | tc-getBUILD_CC() { |
61 | tc-getBUILD_CC() { |
|
|
62 | local v |
|
|
63 | for v in CC_FOR_BUILD BUILD_CC HOSTCC ; do |
60 | if [[ -n ${CC_FOR_BUILD} ]] ; then |
64 | if [[ -n ${!v} ]] ; then |
61 | export BUILD_CC=${CC_FOR_BUILD} |
65 | export BUILD_CC=${!v} |
62 | echo "${CC_FOR_BUILD}" |
66 | echo "${!v}" |
63 | return 0 |
67 | return 0 |
64 | fi |
68 | fi |
|
|
69 | done |
65 | |
70 | |
66 | local search= |
71 | local search= |
67 | if [[ -n ${CBUILD} ]] ; then |
72 | if [[ -n ${CBUILD} ]] ; then |
68 | search=$(type -p ${CBUILD}-gcc) |
73 | search=$(type -p ${CBUILD}-gcc) |
69 | search=${search##*/} |
74 | search=${search##*/} |
70 | else |
|
|
71 | search=gcc |
|
|
72 | fi |
75 | fi |
|
|
76 | search=${search:-gcc} |
73 | |
77 | |
74 | export BUILD_CC=${search} |
78 | export BUILD_CC=${search} |
75 | echo "${search}" |
79 | echo "${search}" |
76 | } |
80 | } |
77 | |
81 | |
78 | # Quick way to export a bunch of vars at once |
82 | # Quick way to export a bunch of vars at once |
79 | tc-export() { |
83 | tc-export() { |
80 | local var |
84 | local var |
81 | for var in "$@" ; do |
85 | for var in "$@" ; do |
82 | eval tc-get${var} |
86 | eval tc-get${var} > /dev/null |
83 | done |
87 | done |
84 | } |
88 | } |
85 | |
89 | |
86 | # A simple way to see if we're using a cross-compiler ... |
90 | # A simple way to see if we're using a cross-compiler ... |
87 | tc-is-cross-compiler() { |
91 | tc-is-cross-compiler() { |
88 | if [[ -n ${CBUILD} ]] ; then |
|
|
89 | return $([[ ${CBUILD} != ${CHOST} ]]) |
92 | return $([[ ${CBUILD:-${CHOST}} != ${CHOST} ]]) |
90 | fi |
|
|
91 | return 1 |
|
|
92 | } |
93 | } |
93 | |
94 | |
|
|
95 | # See if this toolchain is a softfloat based one. |
|
|
96 | # The possible return values: |
|
|
97 | # - only: the target is always softfloat (never had fpu) |
|
|
98 | # - yes: the target should support softfloat |
|
|
99 | # - no: the target should support hardfloat |
|
|
100 | # This allows us to react differently where packages accept |
|
|
101 | # softfloat flags in the case where support is optional, but |
|
|
102 | # rejects softfloat flags where the target always lacks an fpu. |
|
|
103 | tc-is-softfloat() { |
|
|
104 | case ${CTARGET} in |
|
|
105 | bfin*|h8300*) |
|
|
106 | echo "only" ;; |
|
|
107 | *) |
|
|
108 | [[ ${CTARGET//_/-} == *-softfloat-* ]] \ |
|
|
109 | && echo "yes" \ |
|
|
110 | || echo "no" |
|
|
111 | ;; |
|
|
112 | esac |
|
|
113 | } |
94 | |
114 | |
95 | # Parse information from CBUILD/CHOST/CTARGET rather than |
115 | # Parse information from CBUILD/CHOST/CTARGET rather than |
96 | # use external variables from the profile. |
116 | # use external variables from the profile. |
97 | tc-ninja_magic_to_arch() { |
117 | tc-ninja_magic_to_arch() { |
98 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
118 | ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; } |
99 | |
119 | |
100 | local type=$1 |
120 | local type=$1 |
101 | local host=$2 |
121 | local host=$2 |
102 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
122 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
103 | |
123 | |
104 | case ${host} in |
124 | case ${host} in |
105 | alpha*) echo alpha;; |
125 | alpha*) echo alpha;; |
106 | x86_64*) ninj x86_64 amd64;; |
|
|
107 | arm*) echo arm;; |
126 | arm*) echo arm;; |
|
|
127 | avr*) ninj avr32 avr;; |
|
|
128 | bfin*) ninj blackfin bfin;; |
|
|
129 | cris*) echo cris;; |
108 | hppa*) ninj parisc hppa;; |
130 | hppa*) ninj parisc hppa;; |
|
|
131 | i?86*) ninj i386 x86;; |
109 | ia64*) echo ia64;; |
132 | ia64*) echo ia64;; |
110 | m68*) echo m68k;; |
133 | m68*) echo m68k;; |
111 | mips*) echo mips;; |
134 | mips*) echo mips;; |
112 | powerpc64*) echo ppc64;; |
135 | nios2*) echo nios2;; |
113 | powerpc*) echo ppc;; |
136 | nios*) echo nios;; |
|
|
137 | powerpc*) |
|
|
138 | # Starting with linux-2.6.15, the 'ppc' and 'ppc64' trees |
|
|
139 | # have been unified into simply 'powerpc', but until 2.6.16, |
|
|
140 | # ppc32 is still using ARCH="ppc" as default |
|
|
141 | if [[ $(KV_to_int ${KV}) -ge $(KV_to_int 2.6.16) ]] && [[ ${type} == "kern" ]] ; then |
|
|
142 | echo powerpc |
|
|
143 | elif [[ $(KV_to_int ${KV}) -eq $(KV_to_int 2.6.15) ]] && [[ ${type} == "kern" ]] ; then |
|
|
144 | if [[ ${host} == powerpc64* ]] || [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
|
|
145 | echo powerpc |
|
|
146 | else |
|
|
147 | echo ppc |
|
|
148 | fi |
|
|
149 | elif [[ ${host} == powerpc64* ]] ; then |
|
|
150 | echo ppc64 |
|
|
151 | elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then |
|
|
152 | ninj ppc64 ppc |
|
|
153 | else |
|
|
154 | echo ppc |
|
|
155 | fi |
|
|
156 | ;; |
|
|
157 | s390*) echo s390;; |
|
|
158 | sh64*) ninj sh64 sh;; |
|
|
159 | sh*) echo sh;; |
114 | sparc64*) ninj sparc64 sparc;; |
160 | sparc64*) ninj sparc64 sparc;; |
115 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
161 | sparc*) [[ ${PROFILE_ARCH} == "sparc64" ]] \ |
116 | && ninj sparc64 sparc \ |
162 | && ninj sparc64 sparc \ |
117 | || echo sparc |
163 | || echo sparc |
118 | ;; |
164 | ;; |
119 | s390*) echo s390;; |
165 | vax*) echo vax;; |
120 | sh64*) ninj sh64 sh;; |
166 | x86_64*) ninj x86_64 amd64;; |
121 | sh*) echo sh;; |
167 | |
122 | i?86*) ninj i386 x86;; |
168 | # since our usage of tc-arch is largely concerned with |
123 | *) echo ${ARCH};; |
169 | # normalizing inputs for testing ${CTARGET}, let's filter |
|
|
170 | # other cross targets (mingw and such) into the unknown. |
|
|
171 | *) echo unknown;; |
124 | esac |
172 | esac |
125 | } |
173 | } |
126 | tc-arch-kernel() { |
174 | tc-arch-kernel() { |
127 | tc-ninja_magic_to_arch kern $@ |
175 | tc-ninja_magic_to_arch kern $@ |
128 | } |
176 | } |
… | |
… | |
134 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
182 | [[ -z ${host} ]] && host=${CTARGET:-${CHOST}} |
135 | host=${host%%-*} |
183 | host=${host%%-*} |
136 | |
184 | |
137 | case ${host} in |
185 | case ${host} in |
138 | alpha*) echo big;; |
186 | alpha*) echo big;; |
139 | x86_64*) echo little;; |
|
|
140 | arm*b*) echo big;; |
187 | arm*b*) echo big;; |
141 | arm*) echo little;; |
188 | arm*) echo little;; |
|
|
189 | cris*) echo little;; |
142 | hppa*) echo big;; |
190 | hppa*) echo big;; |
|
|
191 | i?86*) echo little;; |
143 | ia64*) echo little;; |
192 | ia64*) echo little;; |
144 | m68*) echo big;; |
193 | m68*) echo big;; |
145 | mips*l*) echo little;; |
194 | mips*l*) echo little;; |
146 | mips*) echo big;; |
195 | mips*) echo big;; |
147 | powerpc*) echo big;; |
196 | powerpc*) echo big;; |
148 | sparc*) echo big;; |
|
|
149 | s390*) echo big;; |
197 | s390*) echo big;; |
150 | sh*b*) echo big;; |
198 | sh*b*) echo big;; |
151 | sh*) echo little;; |
199 | sh*) echo little;; |
|
|
200 | sparc*) echo big;; |
152 | i?86*) echo little;; |
201 | x86_64*) echo little;; |
153 | *) echo wtf;; |
202 | *) echo wtf;; |
154 | esac |
203 | esac |
155 | } |
204 | } |
156 | |
205 | |
157 | # Returns the version as by `$CC -dumpversion` |
206 | # Returns the version as by `$CC -dumpversion` |
158 | gcc-fullversion() { |
207 | gcc-fullversion() { |
159 | echo "$($(tc-getCC) -dumpversion)" |
208 | $(tc-getCC "$@") -dumpversion |
160 | } |
209 | } |
161 | # Returns the version, but only the <major>.<minor> |
210 | # Returns the version, but only the <major>.<minor> |
162 | gcc-version() { |
211 | gcc-version() { |
163 | echo "$(gcc-fullversion | cut -f1,2 -d.)" |
212 | gcc-fullversion "$@" | cut -f1,2 -d. |
164 | } |
213 | } |
165 | # Returns the Major version |
214 | # Returns the Major version |
166 | gcc-major-version() { |
215 | gcc-major-version() { |
167 | echo "$(gcc-version | cut -f1 -d.)" |
216 | gcc-version "$@" | cut -f1 -d. |
168 | } |
217 | } |
169 | # Returns the Minor version |
218 | # Returns the Minor version |
170 | gcc-minor-version() { |
219 | gcc-minor-version() { |
171 | echo "$(gcc-version | cut -f2 -d.)" |
220 | gcc-version "$@" | cut -f2 -d. |
172 | } |
221 | } |
173 | # Returns the Micro version |
222 | # Returns the Micro version |
174 | gcc-micro-version() { |
223 | gcc-micro-version() { |
175 | echo "$(gcc-fullversion | cut -f3 -d. | cut -f1 -d-)" |
224 | gcc-fullversion "$@" | cut -f3 -d. | cut -f1 -d- |
176 | } |
225 | } |
|
|
226 | # Returns the installation directory - internal toolchain |
|
|
227 | # function for use by _gcc-specs-exists (for flag-o-matic). |
|
|
228 | _gcc-install-dir() { |
|
|
229 | echo "$($(tc-getCC) -print-search-dirs 2> /dev/null |\ |
|
|
230 | awk '$1=="install:" {print $2}')" |
|
|
231 | } |
|
|
232 | # Returns true if the indicated specs file exists - internal toolchain |
|
|
233 | # function for use by flag-o-matic. |
|
|
234 | _gcc-specs-exists() { |
|
|
235 | [[ -f $(_gcc-install-dir)/$1 ]] |
|
|
236 | } |
|
|
237 | |
|
|
238 | # Returns requested gcc specs directive unprocessed - for used by |
|
|
239 | # gcc-specs-directive() |
|
|
240 | # Note; later specs normally overwrite earlier ones; however if a later |
|
|
241 | # spec starts with '+' then it appends. |
|
|
242 | # gcc -dumpspecs is parsed first, followed by files listed by "gcc -v" |
|
|
243 | # as "Reading <file>", in order. Strictly speaking, if there's a |
|
|
244 | # $(gcc_install_dir)/specs, the built-in specs aren't read, however by |
|
|
245 | # the same token anything from 'gcc -dumpspecs' is overridden by |
|
|
246 | # the contents of $(gcc_install_dir)/specs so the result is the |
|
|
247 | # same either way. |
|
|
248 | _gcc-specs-directive_raw() { |
|
|
249 | local cc=$(tc-getCC) |
|
|
250 | local specfiles=$(LC_ALL=C ${cc} -v 2>&1 | awk '$1=="Reading" {print $NF}') |
|
|
251 | ${cc} -dumpspecs 2> /dev/null | cat - ${specfiles} | awk -v directive=$1 \ |
|
|
252 | 'BEGIN { pspec=""; spec=""; outside=1 } |
|
|
253 | $1=="*"directive":" { pspec=spec; spec=""; outside=0; next } |
|
|
254 | outside || NF==0 || ( substr($1,1,1)=="*" && substr($1,length($1),1)==":" ) { outside=1; next } |
|
|
255 | spec=="" && substr($0,1,1)=="+" { spec=pspec " " substr($0,2); next } |
|
|
256 | { spec=spec $0 } |
|
|
257 | END { print spec }' |
|
|
258 | return 0 |
|
|
259 | } |
|
|
260 | |
|
|
261 | # Return the requested gcc specs directive, with all included |
|
|
262 | # specs expanded. |
|
|
263 | # Note, it does not check for inclusion loops, which cause it |
|
|
264 | # to never finish - but such loops are invalid for gcc and we're |
|
|
265 | # assuming gcc is operational. |
|
|
266 | gcc-specs-directive() { |
|
|
267 | local directive subdname subdirective |
|
|
268 | directive="$(_gcc-specs-directive_raw $1)" |
|
|
269 | while [[ ${directive} == *%\(*\)* ]]; do |
|
|
270 | subdname=${directive/*%\(} |
|
|
271 | subdname=${subdname/\)*} |
|
|
272 | subdirective="$(_gcc-specs-directive_raw ${subdname})" |
|
|
273 | directive="${directive//\%(${subdname})/${subdirective}}" |
|
|
274 | done |
|
|
275 | echo "${directive}" |
|
|
276 | return 0 |
|
|
277 | } |
|
|
278 | |
|
|
279 | # Returns true if gcc sets relro |
|
|
280 | gcc-specs-relro() { |
|
|
281 | local directive |
|
|
282 | directive=$(gcc-specs-directive link_command) |
|
|
283 | return $([[ ${directive/\{!norelro:} != ${directive} ]]) |
|
|
284 | } |
|
|
285 | # Returns true if gcc sets now |
|
|
286 | gcc-specs-now() { |
|
|
287 | local directive |
|
|
288 | directive=$(gcc-specs-directive link_command) |
|
|
289 | return $([[ ${directive/\{!nonow:} != ${directive} ]]) |
|
|
290 | } |
|
|
291 | # Returns true if gcc builds PIEs |
|
|
292 | gcc-specs-pie() { |
|
|
293 | local directive |
|
|
294 | directive=$(gcc-specs-directive cc1) |
|
|
295 | return $([[ ${directive/\{!nopie:} != ${directive} ]]) |
|
|
296 | } |
|
|
297 | # Returns true if gcc builds with the stack protector |
|
|
298 | gcc-specs-ssp() { |
|
|
299 | local directive |
|
|
300 | directive=$(gcc-specs-directive cc1) |
|
|
301 | return $([[ ${directive/\{!fno-stack-protector:} != ${directive} ]]) |
|
|
302 | } |
|
|
303 | # Returns true if gcc upgrades fstack-protector to fstack-protector-all |
|
|
304 | gcc-specs-ssp-to-all() { |
|
|
305 | local directive |
|
|
306 | directive=$(gcc-specs-directive cc1) |
|
|
307 | return $([[ ${directive/\{!fno-stack-protector-all:} != ${directive} ]]) |
|
|
308 | } |
|
|
309 | |
|
|
310 | |
|
|
311 | # This function generate linker scripts in /usr/lib for dynamic |
|
|
312 | # libs in /lib. This is to fix linking problems when you have |
|
|
313 | # the .so in /lib, and the .a in /usr/lib. What happens is that |
|
|
314 | # in some cases when linking dynamic, the .a in /usr/lib is used |
|
|
315 | # instead of the .so in /lib due to gcc/libtool tweaking ld's |
|
|
316 | # library search path. This cause many builds to fail. |
|
|
317 | # See bug #4411 for more info. |
|
|
318 | # |
|
|
319 | # To use, simply call: |
|
|
320 | # |
|
|
321 | # gen_usr_ldscript libfoo.so |
|
|
322 | # |
|
|
323 | # Note that you should in general use the unversioned name of |
|
|
324 | # the library, as ldconfig should usually update it correctly |
|
|
325 | # to point to the latest version of the library present. |
|
|
326 | gen_usr_ldscript() { |
|
|
327 | local lib libdir=$(get_libdir) output_format="" |
|
|
328 | # Just make sure it exists |
|
|
329 | dodir /usr/${libdir} |
|
|
330 | |
|
|
331 | # OUTPUT_FORMAT gives hints to the linker as to what binary format |
|
|
332 | # is referenced ... makes multilib saner |
|
|
333 | output_format=$($(tc-getCC) ${CFLAGS} ${LDFLAGS} -Wl,--verbose 2>&1 | sed -n 's/^OUTPUT_FORMAT("\([^"]*\)",.*/\1/p') |
|
|
334 | [[ -n ${output_format} ]] && output_format="OUTPUT_FORMAT ( ${output_format} )" |
|
|
335 | |
|
|
336 | for lib in "$@" ; do |
|
|
337 | if [[ ${USERLAND} == "Darwin" ]] ; then |
|
|
338 | ewarn "Not creating fake dynamic library for $lib on Darwin;" |
|
|
339 | ewarn "making a symlink instead." |
|
|
340 | dosym "/${libdir}/${lib}" "/usr/${libdir}/${lib}" |
|
|
341 | else |
|
|
342 | cat > "${D}/usr/${libdir}/${lib}" <<-END_LDSCRIPT |
|
|
343 | /* GNU ld script |
|
|
344 | Since Gentoo has critical dynamic libraries |
|
|
345 | in /lib, and the static versions in /usr/lib, |
|
|
346 | we need to have a "fake" dynamic lib in /usr/lib, |
|
|
347 | otherwise we run into linking problems. |
|
|
348 | |
|
|
349 | See bug http://bugs.gentoo.org/4411 for more info. |
|
|
350 | */ |
|
|
351 | ${output_format} |
|
|
352 | GROUP ( /${libdir}/${lib} ) |
|
|
353 | END_LDSCRIPT |
|
|
354 | fi |
|
|
355 | fperms a+x "/usr/${libdir}/${lib}" || die "could not change perms on ${lib}" |
|
|
356 | done |
|
|
357 | } |