1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
|
#!/bin/bash
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.5,v 1.7 2011/12/07 05:42:19 vapier Exp $
# Format of /etc/env.d/gcc/:
# config-TARGET: CURRENT=version for TARGET
# TARGET-VER: has a TARGET and VER variable
: ${ROOT:=/}
[[ ${ROOT} != */ ]] && ROOT="${ROOT}/"
[[ ${ROOT} != /* ]] && ROOT="${PWD}${ROOT}"
EPREFIX="@GENTOO_PORTAGE_EPREFIX@"
EROOT="${ROOT%/}${EPREFIX}/"
cd /
trap ":" INT QUIT TSTP
argv0=${0##*/}
source "@GENTOO_PORTAGE_EPREFIX@"/etc/init.d/functions.sh || {
echo "${argv0}: Could not source @GENTOO_PORTAGE_EPREFIX@/etc/init.d/functions.sh!" 1>&2
exit 1
}
esyslog() { :; }
umask 022
die_eerror() {
eerror "${argv0}: $*"
exit 1
}
# *BSD are plain stupid ... copy a GNU extension but don't just copy it,
# change it so it works differently. Wish Darwin did selective evolution
# on software developers.
SED=$(type -P gsed)
: ${SED:=$(type -P sed)}
# Further pain: `tac` is not available everywhere #390179
if ! type -P tac >/dev/null ; then
tac() { ${SED} -e '1!G;h;$!d' "$@" ; }
fi
GENTOO_LIBDIR="@GENTOO_LIBDIR@"
[[ ${GENTOO_LIBDIR} == @*@ ]] && GENTOO_LIBDIR="lib"
usage() {
cat << "USAGE_END"
Usage: gcc-config [options] [CC Profile]
Change the current cc/gcc profile, or give info about profiles.
Options:
-C, --nocolor Disable color output
-O, --use-old Use the old profile if one was selected.
-f, --force Make sure all config files are regenerated.
-P, --use-portage-chost Only set to given profile if its CHOST is the
same as that set in /etc/portage/make.conf
(or one of other portage config files...).
-c, --get-current-profile Print current used gcc profile.
-l, --list-profiles Print a list of available profiles.
-S, --split-profile Split profiles into their components
-E, --print-environ Print environment that can be used to setup the
current gcc profile, or a specified one.
-B, --get-bin-path Print path where binaries of the given/current
profile are located.
-L, --get-lib-path Print path where libraries of the given/current
profile are located.
Profile names are of the form: <CHOST>-<gcc version>
For example: i686-pc-linux-gnu-3.2.1
USAGE_END
exit ${1:-1}
}
[[ $# -lt 1 ]] && usage 1
# Usage: source_var <var> <file> [default value]
source_var() {
unset $1
local val=$(source "$2"; echo ${!1})
: ${val:=$3}
eval $1=\"${val}\"
}
show_var() {
source_var "$@"
echo "${!1}"
}
try_real_hard_to_find_CHOST() {
#
# First we read make.conf
#
local varname=${1:-CHOST}
local conf=${EROOT}/etc/portage/make.conf
if [[ ! -e ${conf} && -e ${EROOT}/etc/make.conf ]] ; then
conf=${EROOT}/etc/make.conf
fi
local ret=$(source "${conf}" 2>/dev/null ; echo ${!varname})
if [[ -z ${ret} ]] ; then
# newer portage supports spaces between the var and =
# CHOST = "this-is-retarded"
ret=$(eval $(
sed -n \
-e 's:[[:space:]]::g' \
-e "/^${varname}=/p" \
"${conf}"
) ; echo ${!varname}
)
fi
if [[ -n ${ret} ]] ; then
echo ${ret}
return 0
fi
#
# Then we try /etc/env.d/gcc/config-${CTARGET}
#
if [[ -s ${EROOT}/etc/env.d/gcc/config-${CTARGET} ]] ; then
ret=$(split_gcc_ver $(show_var CURRENT "${EROOT}"/etc/env.d/gcc/config-${CTARGET}))
echo ${ret% *}
fi
}
get_real_chost() {
[[ -n ${REAL_CHOST} ]] && return 0
# shortcut for switching compilers in a cross chroot
if [[ -n ${CHOST} && ${ROOT} != "/" ]] ; then
REAL_CHOST=${CHOST}
return 0
fi
# make sure portage isnt broken
if python -V &>/dev/null ; then
export REAL_CHOST=$(env -i EPREFIX="${EPREFIX}" "$(PATH="${EPREFIX}/usr/bin:${PATH}" type -P portageq)" envvar CHOST 2>/dev/null)
else
ewarn "Python seems to be broken, attempting to locate CHOST ourselves ..."
export REAL_CHOST=$(try_real_hard_to_find_CHOST)
fi
if [[ -z ${REAL_CHOST} ]] ; then
eerror "${argv0}: Could not get portage CHOST!"
eerror "${argv0}: You should verify that CHOST is set in one of these places:"
eerror "${argv0}: - ${EROOT}/etc/portage/make.conf"
eerror "${argv0}: - active environment"
exit 1
fi
}
is_cross_compiler() {
get_real_chost
[[ ${CC_COMP/${REAL_CHOST}} == ${CC_COMP} ]]
}
convert_profile_paths() {
# Older gcc's used PATH= and ROOTPATH= in the env.d files.
# Newer one's only use GCC_PATH=. Convert old to new here.
cp -p "${GCC_ENV_D}/${CC_COMP}" "${GCC_ENV_D}/${CC_COMP}.gcc-config-ref" || return 1
GCC_PATH=$(
unset GCC_PATH PATH ROOTPATH
source "${GCC_ENV_D}/${CC_COMP}"
echo ${GCC_PATH:-${PATH:-${ROOTPATH}}}
)
${SED} -i \
-e '/^PATH=/d' \
-e '/^ROOTPATH=/d' \
-e '/^GCC_PATH=/d' \
"${GCC_ENV_D}/${CC_COMP}" || return 1
echo "GCC_PATH=\"${GCC_PATH}\"" >> "${GCC_ENV_D}/${CC_COMP}" || return 1
touch -r "${GCC_ENV_D}/${CC_COMP}.gcc-config-ref" "${GCC_ENV_D}/${CC_COMP}" || return 1
rm -f "${GCC_ENV_D}/${CC_COMP}.gcc-config-ref" || return 1
return 0
}
update_wrappers() {
local CTARGET=$1
# Find the bin wrapper
local wrapper
for wrapper in ${GENTOO_LIBDIR} lib lib64 lib32 lib ; do
wrapper="${EROOT}usr/${wrapper}/misc/gcc-config"
[[ -e ${wrapper} ]] && break
done
# Update the wrappers for this profile. We maintain this list
# by hand as the tools that are available can come & go if the
# user re-emerges gcc with dif USE flags. We need to clean out
# the old wrappers if the functionality no longer exists.
# XXX: Future work: save the list of wrappers we generated in
# the generated env.d file so we can scrub things better.
# After that, we can use a dynamic list based on what tools are
# actually available in ${GCC_PATH}/.
for x in {,${CTARGET}-}{cpp,cc,gcc,c++,g++,f77,g77,gcj,gcjh,gcov,gdc,gdmd,gfortran,gccgo} ; do
# Obviously don't want to touch native stuff for cross-compilers
[[ ${x} != ${CTARGET}-* ]] && is_cross_compiler && continue
# Make sure we have no stale wrappers
rm -f "${EROOT}/usr/bin/${x}"
[[ ${x:${#x}-3} == "gcc" || ${x:${#x}-3} == "g++" ]] \
&& rm -f "${EROOT}/usr/bin/${x}"{32,64}
# Only install a wrapper if the binary exists ...
# We want to figure out the 'reference file' for each
# wrapper (the binary we're 'wrapping') so that we can
# sync mtimes together. This makes things like ccache
# happy. See Bug #70548 for more info.
local ref
case ${x} in
cc) ref=gcc;;
f77) ref=g77;;
*) ref=${x};;
esac
ref="${ROOT}/${GCC_PATH}/${ref}"
if [[ -x ${ref} ]] ; then
cp -f "${wrapper}" "${EROOT}/usr/bin/${x}"
touch -r "${ref}" "${EROOT}/usr/bin/${x}"
fi
done
# legacy cruft, make sure we dont leave it laying around #143205
rm -f "${EROOT}/usr/bin/${CTARGET}-cc"
# install the canonical cpp wrapper
if ! is_cross_compiler ; then
cp -f "${wrapper}" "${EROOT}/lib/cpp"
touch -r "${EROOT}/usr/bin/${CTARGET}-cpp" "${EROOT}/lib/cpp"
fi
}
mv_if_diff() {
if cmp -s "$1" "$2" ; then
rm -f "$1"
return 0
else
mv -f "$1" "$2"
return 1
fi
}
switch_profile() {
local MY_LDPATH=
local GCC_PROFILES=
local OLD_CC_COMP=
local GCC_PATH=
[[ $(id -u) != $(python -c 'import portage.const as c; print c.rootuid;') ]] && die_eerror "Must be root"
if is_cross_compiler ; then
ebegin "Switching cross-compiler to ${CC_COMP}"
else
ebegin "Switching native-compiler to ${CC_COMP}"
fi
if egrep -q '^(PATH|ROOTPATH)=' "${GCC_ENV_D}/${CC_COMP}" ; then
convert_profile_paths "${GCC_ENV_D}/${CC_COMP}" || return 1
fi
source_var GCC_PATH "${GCC_ENV_D}/${CC_COMP}"
# Setup things properly again for this profile
unset GCC_SPECS LDPATH
source "${GCC_ENV_D}/${CC_COMP}"
# Ignore active profile errors here since we're switching away
OLD_CC_COMP=$(get_current_profile 2>/dev/null)
# GCC_SPECS have long been stable, and people messing with
# them know better than to install bad paths, so don't bother
# with sanity checks.
local envd="${ENV_D}/05gcc-${CTARGET}"
cat <<-EOF > "${envd}.tmp"
PATH="${GCC_PATH}"
ROOTPATH="${GCC_PATH}"
GCC_SPECS="${GCC_SPECS}"
EOF
echo "CURRENT=${CC_COMP}" > "${GCC_ENV_D}/config-${CTARGET}"
if ! is_cross_compiler ; then
# Order our profiles to have the default first ...
# We do this so that we can have them ordered with default
# first in /etc/ld.so.conf, as the logical is that all
# compilers for default CHOST will be used to compile stuff,
# and thus we want all their lib paths in /etc/ld.so.conf ...
get_real_chost
MY_LDPATH=$(${SED} -n \
-e '/^LDPATH=/{s|LDPATH=||;s|"||g;s|:|\n|g;p}' \
"${GCC_ENV_D}"/${REAL_CHOST}-* \
"${GCC_ENV_D}"/${CC_COMP} | tac
)
# Pass all by default
awk '!/^(STDCXX_INCDIR|LDPATH|CC|CXX|CTARGET|GCCBITS|GCC_SPECS|GCC_PATH)=/ {print $0}' \
"${GCC_ENV_D}/${CC_COMP}" >> "${envd}.tmp"
if [[ -z ${EPREFIX} && -d ${ROOT}/etc/ld.so.conf.d ]] ; then
echo "${MY_LDPATH}" > "${ROOT}"/etc/ld.so.conf.d/05gcc-${CTARGET}.conf
else
echo "LDPATH=\"${MY_LDPATH}\"" >> "${envd}.tmp"
fi
# Punt old files; maybe globs too much, but oh well
rm -f \
"${GCC_ENV_D}/NATIVE" "${GCC_ENV_D}/.NATIVE" \
"${ENV_D}/05gcc" "${GCC_ENV_D}/config" \
"${ENV_D}/05gcc-${CTARGET}"-* "${GCC_ENV_D}/config-${CTARGET}"-*
# Help out the gcc wrapper
ln -sf ${CC_COMP} "${GCC_ENV_D}/.NATIVE"
# Relocate random crap
if [[ -e ${EROOT}/usr/${GENTOO_LIBDIR}/pkgconfig/libgcj-${CC_COMP_VERSION}.pc ]] ; then
local mver=${CC_COMP_VERSION:0:3}
for x in "" "-${mver}" ; do
x="${EROOT}/usr/lib/pkgconfig/libgcj${x}.pc"
rm -f "${x}"
ln -s libgcj-${CC_COMP_VERSION}.pc "${x}"
done
fi
# We need to make sure that libgcc_s.so / libunwind.so make it into /lib.
# On many systems (x86/amd64/etc...), this will probably never matter,
# but on other systems (arm/mips/etc...), this is quite critical.
# http://bugs.gentoo.org/60190
#
# The funky move magic is required for proper updating of in-use files.
#
# Need to cut out extra paths in multilib case and pray the first path
# is the "root" multilib path ... maybe some day change this to use
# `gcc -print-file-name` ...
LDPATH=${LDPATH%%:*}
# We can copy the other libs to /usr/lib without funky copying,
# don't use symlinks as on Darwin we need to fix the
# install_names of the objects.
# Remember that Prefix doesn't do multilib!
#
# To emulate properly what ld.so.conf magic does for non-prefix,
# we have to copy the libs of all installed (native) GCC's and
# make sure we do the current one as last, such that the
# pointers for the unversioned libs point to the currently
# selected version.
GCC_PROFILES=$(LC_ALL="C" ls ${GCC_ENV_D}/${REAL_CHOST}-*)
local dstlibgcc=${EROOT}/usr/${REAL_CHOST}/lib/gcc
local dstlib=${EROOT}/lib
# Prepare empty directories first
local temporary=.gcc.config.new
rm -rf "${dstlib}"/${temporary} "${dstlibgcc}"/${temporary} || return 1
mkdir -p "${dstlib}"/${temporary} "${dstlibgcc}"/${temporary} || return 1
dumpargs() {
return 0
local x
echo "$1 \\"; shift
for x in "$@"; do
echo " '$x' \\"
done
echo
}
case ${REAL_CHOST} in
*-mint*)
do_single_runtime() {
return 0
}
finish_runtime_dir() {
return 0
}
;;
*-aix*)
LIBSUFFIX="a"
AIXLIBS=
do_single_runtime() {
dumpargs do_single_runtime "$@"
local sourcedir=$1; shift
local libname=$1; shift
local targetdir=$1; shift
local finaldir=$1; shift
aixdll \
--merge-runtime \
--finish=false \
--target="${targetdir}"/lib${libname}.${LIBSUFFIX} \
"${sourcedir}"/lib${libname}.${LIBSUFFIX} \
|| return 1
[[ ${AIXLIBS} == *":${targetdir}/lib${libname}.${LIBSUFFIX}:"* ]] \
|| AIXLIBS="${AIXLIBS}:${targetdir}/lib${libname}.${LIBSUFFIX}:"
}
finish_runtime_dir() {
dumpargs finish_runtime_dir "$@"
local sourcedir=$1; shift
local targetdir=$1; shift
local cleanup=$1; shift
local f save_IFS
save_IFS=$IFS; IFS=:
for f in ${AIXLIBS}; do
IFS=$save_IFS
[[ -n ${f} ]] || continue
aixdll \
--finish-merge \
--keepdir=false \
"${f}" \
|| return 1
done
IFS=$save_IFS
unset AIXLIBS
finish_runtime_dir_elf \
"${sourcedir}" \
"${targetdir}" \
${cleanup} \
|| return 1
}
;;
*-darwin*)
LIBSUFFIX="dylib"
do_single_runtime() {
local sourcedir=$1; shift
local libname=$1; shift
local targetdir=$1; shift
local finaldir=$1; shift
do_single_runtime_elf \
"${sourcedir}" \
${libname} \
"${targetdir}" \
"${finaldir}" \
|| return 1
# fix install_name on Darwin
local lib
for lib in "${targetdir}"/lib*; do
# we use otool because scanmacho need not to be
# available yet during bootstrap
soname=$(otool -LX "${lib}" | sed -e '1!d' -e 's/^\t//' -e 's/ (compatibility.*$//')
install_name_tool \
-id "${finaldir}"/${soname##*/} \
"${lib}" \
&> /dev/null || true
done
}
finish_runtime_dir() {
finish_runtime_dir_elf "$@"
}
;;
hppa64*-hpux*)
LIBSUFFIX="sl"
do_single_runtime() {
do_single_runtime_elf "$@"
}
finish_runtime_dir() {
finish_runtime_dir_elf "$@"
}
;;
hppa*-hpux*)
LIBSUFFIX="sl"
do_single_runtime() {
dumpargs do_single_runtime "$@"
local sourcedir=$1; shift
local libname=$1; shift
local targetdir=$1; shift
local finaldir=$1; shift
# when using some simple shell script wrappers (again :)),
# there may be no libs around!
if [[ -n $(ls "${sourcedir}"/lib${libname}.*${LIBSUFFIX}* 2>/dev/null) ]]; then
cp -fpP "${sourcedir}"/lib${libname}.*${LIBSUFFIX}* "${targetdir}" || return 1
# gcc creates "libgcc_s.4" with symlink "libgcc_s.sl -> libgcc_s.4", and
# we patch it to also set the 'internal name' (=soname) (gcc-PR40913).
if [[ ${libname} == 'gcc_s' ]]; then
if [[ -n $(ls "${sourcedir}"/lib${libname}.[0-9] 2>/dev/null) ]]; then
cp -fpP "${sourcedir}"/lib${libname}.[0-9] "${targetdir}" || return 1
fi
fi
# we do not need the unversioned lib, as linking
# is done against the used gcc's private copy.
rm -f "${targetdir}"/lib${libname}.${LIBSUFFIX} || return 1
fi
}
finish_runtime_dir() {
finish_runtime_dir_elf "$@"
}
;;
*)
LIBSUFFIX="so"
do_single_runtime() {
do_single_runtime_elf "$@"
}
finish_runtime_dir() {
finish_runtime_dir_elf "$@"
}
;;
esac
do_single_runtime_elf() {
dumpargs do_single_runtime_elf "$@"
local sourcedir=$1; shift
local libname=$1; shift
local targetdir=$1; shift
local finaldir=$1; shift
# when using some simple shell script wrappers (again :)),
# there may be no libs around!
if [[ -n $(ls "${sourcedir}"/lib${libname}.*${LIBSUFFIX}* 2>/dev/null) ]]; then
cp -fpP "${sourcedir}"/lib${libname}.*${LIBSUFFIX}* "${targetdir}" || return 1
# we do not need the unversioned lib, as linking
# is done against the used gcc's private copy.
rm -f "${targetdir}"/lib${libname}.${LIBSUFFIX} || return 1
fi
}
finish_runtime_dir_elf() {
dumpargs finish_runtime_dir_elf "$@"
local sourcedir=$1; shift
local targetdir=$1; shift
local cleanup=$1; shift
if [[ ${cleanup} == clean ]]; then
if [[ ${targetdir} == *${EPREFIX}/lib ]]; then
echo "WARNING: not cleaning ${targetdir}" >&2
else
for f in "${targetdir}"/*; do
[[ ${f} == ${sourcedir} ]] && continue
[[ -e "${sourcedir}/${f##*/}" ]] && continue
rm -f "${f}"
done
fi
fi
# move symlinks first:
# because of file ordering, the real files may be
# moved before the symlinks, causing the symlinks
# going broken.
for f in "${sourcedir}"/*; do
[[ -e ${f} && -L ${f} ]] || continue
# use backups: hpux cannot overwrite sharedlibs in use: "Text file busy"
rm -f "${targetdir}"/${f##*/}*'~' >/dev/null 2>&1
mv -f --backup=numbered --suffix='~' "${f}" "${targetdir}"/${f##*/} || return 1
rm -f "${targetdir}"/${f##*/}*'~' >/dev/null 2>&1
done
for f in "${sourcedir}"/*; do
[[ -f "${f}" ]] || continue
# use backups: hpux cannot overwrite sharedlibs in use: "Text file busy"
rm -f "${targetdir}"/${f##*/}*'~' >/dev/null 2>&1
mv -f --backup=numbered --suffix='~' "${f}" "${targetdir}"/${f##*/} || return 1
rm -f "${targetdir}"/${f##*/}*'~' >/dev/null 2>&1
done
rmdir "${sourcedir}"
}
for x in ${GCC_PROFILES} ; do
unset GCC_PATH LDPATH
eval $(
source "${x}"
echo "GCC_PATH='${GCC_PATH}'"
echo "LDPATH='${LDPATH%%:*}'"
)
for multilib in $(
# ensure we always operate on base libdir first
[[ -n ${EPREFIX} ]] && echo ".;@X" ;
"${ROOT}/${GCC_PATH}"/gcc -print-multi-lib
); do
multiarg=${multilib#*;}
multiarg=${multiarg/@/-}
multilibdir=${multilib%;*}
# in Prefix we don't do multilib, and the os-directory call
# from below results in getting a subdir for our 64-bits
# targets which breaks things badly...
if [[ ${multilib} == ".;@X" ]] ; then
libdir="lib/${multilibdir}"
else
libdir="lib/"$("${ROOT}/${GCC_PATH}"/gcc ${multiarg} -print-multi-os-directory)
fi
pushd "${ROOT%/}${LDPATH}/${multilibdir}" > /dev/null || return 1
local donelibs=
for lib in lib*.${LIBSUFFIX}; do
[[ ${lib} != *.la ]] || continue # skip libtool files.
gcclib=${lib#lib}
gcclib=${gcclib%.${LIBSUFFIX}}
gcclib=${gcclib%%.[0-9]*} # we need the unversioned libname.
[[ ${donelibs} != *" ${gcclib} "* ]] || continue
donelibs="${donelibs} ${gcclib} "
if [[ ${gcclib} == gcc_s* || ${gcclib} == unwind* ]]; then
targetdir="${EPREFIX}/${libdir}"
# finish lib/lib* at first, as the others may depend on it, and newer
# libs normally are compatible to older ones with same soname.
[[ ${targetdirs} == *":${targetdir},:"* ]] ||
targetdirs=":${targetdir},:${targetdirs}"
do_single_runtime \
"${ROOT%/}${LDPATH}/${multilibdir}" \
${gcclib} \
"${ROOT%/}${targetdir}"/${temporary} \
"${targetdir}" \
|| return 1
continue
fi
targetdir="${EPREFIX}/usr/${REAL_CHOST}/lib/gcc/${multilibdir}"
# finish usr/<chost>/lib/gcc/lib* after lib/lib*
[[ ${targetdirs} == *":${targetdir},clean:"* ]] ||
targetdirs="${targetdirs}:${targetdir},clean:"
do_single_runtime \
"${ROOT%/}${LDPATH}/${multilibdir}" \
${gcclib} \
"${ROOT%/}${targetdir}"/${temporary} \
"${targetdir}" \
|| return 1
done
popd > /dev/null
# we do not do multilib in Prefix any more, so stop
[[ ${multilib} == ".;@X" ]] && break
done # multilib
done # GCC_PROFILES
save_IFS=$IFS
IFS=:
for targetdir in ${targetdirs}; do
IFS=$save_IFS
[[ -n ${targetdir} ]] || continue
# eventually cleanup old files (not from $EPREFIX/lib)
clean=${targetdir##*,}
targetdir=${targetdir%,*}
finish_runtime_dir \
"${ROOT%/}${targetdir}"/${temporary} \
"${ROOT%/}${targetdir}" \
${clean} \
|| return 1
done
IFS=$save_IFS
unset dstlibgcc dstlib temporary
unset LIBSUFFIX AIXLIBS
unset targetdirs targetdir
unset x
unset multilib
unset multilibdir
unset multiarg
unset libdir
fi
mv_if_diff "${envd}.tmp" "${envd}"
local envd_changed=$?
# reset correct value, since we have overwritten it in the above loop
source_var GCC_PATH "${GCC_ENV_D}/${CC_COMP}"
update_wrappers ${CTARGET}
if [[ ${ROOT} == "/" ]] && \
[[ ${OLD_CC_COMP} != ${CC_COMP} || ${FORCE} == "yes" ]] && \
[[ ${envd_changed} -eq 1 ]]
then
# in case python is broken ...
if ! env-update ; then
echo ""
ewarn "env-update failed to work properly; making sure ld.so.conf paths"
ewarn "are setup properly. Please rerun gcc-config with the -f option."
echo ""
if [[ -z ${EPREFIX} && ! -d /etc/ld.so.conf.d ]] ; then
show_var LDPATH "${ROOT}"/etc/env.d/05gcc-${CTARGET} \
| sed -e 's|:|\n|g' >> /etc/ld.so.conf
fi
ldconfig
fi
else
envd_changed=0
fi
eend 0
if [[ ${envd_changed} -ne 0 ]] ; then
echo
ewarn "If you intend to use the gcc from the new profile in an already"
ewarn "running shell, please remember to do:"
echo
ewarn " (bash) # . ${EPREFIX}/etc/profile"
ewarn "or"
ewarn " (tcsh) # source ${EPREFIX}/etc/csh.login"
echo
fi
return 0
}
get_current_profile() {
local conf="${GCC_ENV_D}/config-${CTARGET}"
if [[ ! -f ${conf} ]] ; then
conf="${GCC_ENV_D}/config" # old name
elif [[ -n ${CC_COMP} ]] && is_cross_compiler ; then
conf="${conf}-${CC_COMP}"
fi
if [[ ! -f ${conf} ]] ; then
eerror "${argv0}: No gcc profile is active!"
return 1
fi
source_var CURRENT "${conf}"
if [[ -z ${CURRENT} ]] ; then
eerror "${argv0}: No gcc profile is active!"
return 1
elif [[ ! -f ${GCC_ENV_D}/${CURRENT} ]] ; then
eerror "${argv0}: Active gcc profile is invalid!"
return 1
fi
echo "${CURRENT}"
return 0
}
list_profiles() {
local i=0
local filter=
if [[ ${ROOT} != "/" ]] ; then
echo "Using gcc-config info in ${ROOT}"
fi
if [[ ! -f ${GCC_ENV_D}/config-${CTARGET} ]] ; then
if ! is_cross_compiler && [[ -e ${GCC_ENV_D}/config ]] ; then
[[ -w ${GCC_ENV_D}/config ]] && mv ${GCC_ENV_D}/config ${GCC_ENV_D}/config-${CTARGET}
else
# get_current_profile already warns
#eerror "${argv0}: No gcc profile is active; please select one!"
filter=${CTARGET}
fi
fi
source_var CURRENT "${GCC_ENV_D}"/config-${CTARGET}
CURRENT_NATIVE=${CURRENT}
local target=
for x in "${GCC_ENV_D}"/* ; do
[[ -f ${x} ]] || continue
[[ ${x} == */config* ]] && continue
source_var CTARGET "${x}"
((++i))
[[ -n ${filter} ]] && [[ ${filter} != ${CTARGET} ]] && continue
if [[ ${target} != ${CTARGET} ]] ; then
[[ ${i} -gt 1 ]] && echo
target=${CTARGET}
CTARGET=""
fi
x=${x##*/}
if [[ ${x} == ${CURRENT_NATIVE} ]] ; then
x="${x} ${GOOD}*${NORMAL}"
elif [[ -e ${GCC_ENV_D}/config-${target} ]] ; then
source "${GCC_ENV_D}/config-${target}"
[[ ${x} == ${CURRENT} ]] && x="${x} ${HILITE}*${NORMAL}"
fi
echo " [${i}] ${x}"
done
}
print_environ() {
local GCC_PATH=
local ENV_CMD=
local SET_ELEMENT=
source_var GCC_PATH "${GCC_ENV_D}/${CC_COMP}" "${PATH}"
case ${SHELL} in
*/csh|*/tcsh)
ENV_CMD="setenv"
SET_ELEMENT=" "
;;
*)
ENV_CMD="export"
SET_ELEMENT="="
;;
esac
(
PATH=${GCC_PATH}:${PATH}
for var in PATH GCC_SPECS ; do
echo "${ENV_CMD} ${var}${SET_ELEMENT}\"${!var}\""
done
)
}
get_bin_path() { show_var GCC_PATH "${GCC_ENV_D}/${CC_COMP}" ; }
get_lib_path() { show_var LDPATH "${GCC_ENV_D}/${CC_COMP}" ; }
split_gcc_ver() {
# Split up the gcc profile into components:
# TARGET-VER[-specs] -> TARGET VER [specs]
# arm-linux-3.3.6 -> arm-linux 3.3.6
# x86_64-linux-4.0.1-pre1234 -> x86_64-linux 4.0.1-pre1234
# sh-linux-3.4.4-hardened -> sh-linux 3.4.4 hardened
#
# So below we will start at the end and run a small state machine ...
# specs [3]
# accept everything
# specs -> version transition [3->2]
# when we find a version component
# version [2]
# accept only version components (see the regex)
# version -> target transition [2->1]
# when we hit a non version component
# target [1]
# accept everything we have left
#
echo "$@" | awk -F- '
function pushit(onme, pushee) {
return (onme == "" ? pushee : pushee"-"onme);
}
{
state=3
targ=""
ver=""
spec=""
for (i=NF; i > 0; --i) {
if (state >= 2) {
if ($i ~ /^(alpha|beta|pre|rc|p)?[[:digit:].]+$/) {
ver=pushit(ver, $i)
state=2
} else if (state == 3)
spec=pushit(spec, $i)
else
state=1
}
if (state == 1)
targ = pushit(targ, $i)
}
if (targ == "") {
if (ver == "") {
ver=spec
spec=""
}
targ=ver
ver=""
}
print targ " " ver (spec != "" ? " " spec : "")
}'
}
chop_gcc_ver_spec() {
local splitTED=$(split_gcc_ver $@) # target ver spec
splitTED=${splitTED#* } # ver spec
echo ${splitTED/ /-} # ver-spec
}
SET_X=false
NEED_ACTION="yes"
DOIT="switch_profile"
CHECK_CHOST="no"
FORCE="no"
CC_COMP=
ENV_D="${EROOT}etc/env.d"
GCC_ENV_D="${ENV_D}/gcc"
for x in "$@" ; do
case "${x}" in
# Only use specified compiler if one is not already selected.
-O|--use-old)
: ${CTARGET:=$(try_real_hard_to_find_CHOST)}
if get_current_profile &>/dev/null ; then
CC_COMP=$(get_current_profile)
else
die_eerror "No profile selected, unable to utilize --use-old"
fi
;;
-f|--force)
FORCE="yes"
;;
-P|--use-portage-chost)
CHECK_CHOST="yes"
;;
-c|--get-current-profile)
if [[ ${NEED_ACTION} == "yes" ]] ; then
NEED_ACTION="no"
DOIT="get_current_profile"
fi
;;
-l|--list-profiles)
if [[ ${NEED_ACTION} == "yes" ]] ; then
NEED_ACTION="no"
DOIT="list_profiles"
fi
;;
-S|--split-profile)
if [[ ( $1 != "-S" && $1 != "--split-profile" ) || $# -eq 1 ]] ; then
usage 1
fi
shift # push -S out
for x in "$@" ; do
split_gcc_ver ${x}
done
exit 0
;;
-E|--print-environ)
if [[ ${NEED_ACTION} == "yes" ]] ; then
NEED_ACTION="no"
DOIT="print_environ"
fi
;;
-B|--get-bin-path)
if [[ ${NEED_ACTION} == "yes" ]] ; then
NEED_ACTION="no"
DOIT="get_bin_path"
fi
;;
-L|--get-lib-path)
if [[ ${NEED_ACTION} == "yes" ]] ; then
NEED_ACTION="no"
DOIT="get_lib_path"
fi
;;
-x|--debug)
SET_X=true
;;
-C|--nocolor)
# nothing to do; functions.sh parsed this for us
;;
-h|--help)
usage 0
;;
-V|--version)
unset RCSfile Revision Date
rcsfile="$RCSfile: gcc-config-1.5,v $"
rcsfile=${rcsfile#: }
rcsfile=${rcsfile%,v*}
cvsrev="$Revision: 1.7 $"
cvsrev=${cvsrev#: }
cvsdate="$Date: 2011/12/07 05:42:19 $"
cvsdate=${cvsdate#: }
echo "${rcsfile} (r${cvsrev% *} @ ${cvsdate% *})"
exit 0
;;
-*)
die_eerror "Invalid switch! Run ${argv0} without parameters for help."
;;
*)
${SET_X} && set -x
if [[ -z ${CC_COMP} ]] ; then
if [[ -z $(echo ${x} | tr -d '[:digit:]') ]] ; then
# User gave us a # representing the profile
i=1
for y in "${GCC_ENV_D}"/* ; do
[[ -f ${y} ]] || continue
[[ ${y} == */config* ]] && continue
if [[ -f ${y} ]] && [[ ${x} == ${i} ]] ; then
CC_COMP=${y##*/}
break
fi
((++i))
done
if [[ -z ${CC_COMP} ]] ; then
die_eerror "Could not locate profile #$x !"
fi
else
# User gave us a full HOST-gccver
x=${x##*/}
if [[ ${DOIT} == "get_current_profile" && -z $(ls "${GCC_ENV_D}"/${x}-* 2>/dev/null) ]] || \
[[ ${DOIT} != "get_current_profile" && ! -f ${GCC_ENV_D}/${x} ]]
then
# Maybe they just gave us a gccver ...
get_real_chost
if [[ -f ${GCC_ENV_D}/${REAL_CHOST}-${x} ]] ; then
x=${REAL_CHOST}-${x}
else
die_eerror "Could not locate '$x' in '${GCC_ENV_D}/' !"
fi
fi
CC_COMP=${x}
fi
else
die_eerror "Too many arguments! Run ${argv0} without parameters for help."
fi
;;
esac
done
${SET_X} && set -x
if [[ ${DOIT} == "switch_profile" ]] && [[ -z ${CC_COMP} ]] ; then
usage 1
fi
get_real_chost
[[ ${DOIT} == "get_current_profile" ]] \
&& : ${CTARGET:=${CC_COMP:-${REAL_CHOST}}} \
|| : ${CTARGET:=${REAL_CHOST}}
if [[ -z ${CC_COMP} ]] ; then
CC_COMP=$(get_current_profile)
if [[ $? -ne 0 ]] ; then
echo "${CC_COMP}"
list_profiles
exit 1
fi
fi
if [[ ${DOIT} != "get_current_profile" ]] ; then
GCC_LIB=$(
show_var LDPATH "${GCC_ENV_D}/${CC_COMP}" | \
sed -e "s|${EPREFIX}/*|/|g" | \
awk -F/ '{ print "/"$2"/"$3"/"$4"/" }'
)
CC_COMP_VERSION=$(chop_gcc_ver_spec ${CC_COMP})
CC_COMP_TARGET=${CC_COMP%-${CC_COMP_VERSION}*}
if [[ ! -d ${EROOT}/${GCC_LIB}/${CC_COMP_TARGET}/${CC_COMP_VERSION} ]]; then
CC_COMP_VERSION=${CC_COMP_VERSION%-*}
fi
if [[ ! -d ${EROOT}/${GCC_LIB}/${CC_COMP_TARGET}/${CC_COMP_VERSION} ]] || \
[[ ! -f ${GCC_ENV_D}/${CC_COMP} ]]
then
eerror "${argv0}: Profile does not exist or invalid setting for ${GCC_ENV_D}/${CC_COMP}" 1>&2
#exit 1
fi
fi
if [[ ${CHECK_CHOST} == "yes" ]] ; then
# Chosen CHOST are not the same as the real CHOST according to
# make.conf, and --use-portage-chost option was given, so do nothing
get_real_chost
CC_COMP_VERSION=$(chop_gcc_ver_spec ${CC_COMP})
CC_COMP_TARGET=${CC_COMP:0:${#CC_COMP}-${#CC_COMP_VERSION}-1}
[[ ${CC_COMP_TARGET} != ${REAL_CHOST} ]] && exit 0
fi
${DOIT}
# vim:ts=4
|