File tree Expand file tree Collapse file tree 1 file changed +2
-22
lines changed Expand file tree Collapse file tree 1 file changed +2
-22
lines changed Original file line number Diff line number Diff line change @@ -29,27 +29,12 @@ function sources_crosscomp() {
29
29
30
30
declare -A pkgs
31
31
case " $dist " in
32
- jessie)
33
- pkgs=(
34
- [binutils]=2.25
35
- [cloog]=0.18.1
36
- [gcc]=4.9.4
37
- [glibc]=2.19
38
- [gmp]=6.0.0a
39
- [isl]=0.12.2
40
- [kernel]=4.9.35
41
- [mpfr]=3.1.2
42
- [mpc]=1.0.2
43
- )
44
- ;;
45
32
stretch)
46
33
pkgs=(
47
34
[binutils]=2.28
48
- [cloog]=0.18.4
49
35
[gcc]=6.4.0
50
36
[glibc]=2.24
51
37
[gmp]=6.1.2
52
- [isl]=0.18
53
38
[kernel]=4.9.80
54
39
[mpfr]=3.1.5
55
40
[mpc]=1.0.3
@@ -58,11 +43,9 @@ function sources_crosscomp() {
58
43
buster)
59
44
pkgs=(
60
45
[binutils]=2.31.1
61
- [cloog]=0.18.4
62
46
[gcc]=8.3.0
63
47
[glibc]=2.28
64
48
[gmp]=6.1.2
65
- [isl]=0.20
66
49
[kernel]=4.19.50
67
50
[mpfr]=4.0.2
68
51
[mpc]=1.1.0
@@ -74,9 +57,6 @@ function sources_crosscomp() {
74
57
;;
75
58
esac
76
59
77
- downloadAndExtract " https://libisl.sourceforge.io/isl-${pkgs[isl]} .tar.bz2" isl --strip-components 1
78
- downloadAndExtract " http://www.bastoul.net/cloog/pages/download/count.php3?url=./cloog-${pkgs[cloog]} .tar.gz" cloog --strip-components 1
79
-
80
60
downloadAndExtract " https://ftp.gnu.org/gnu/binutils/binutils-${pkgs[binutils]} .tar.gz" binutils --strip-components 1
81
61
82
62
downloadAndExtract " https://ftp.gnu.org/gnu/mpfr/mpfr-${pkgs[mpfr]} .tar.gz" mpfr --strip-components 1
@@ -89,7 +69,7 @@ function sources_crosscomp() {
89
69
downloadAndExtract " https://www.kernel.org/pub/linux/kernel/v4.x/linux-${pkgs[kernel]} .tar.gz" linux --strip-components 1
90
70
91
71
local pkg
92
- for pkg in cloog gmp isl mpc mpfr; do
72
+ for pkg in gmp mpc mpfr; do
93
73
ln -sf " ../$pkg " " gcc/$pkg "
94
74
done
95
75
}
@@ -189,7 +169,7 @@ function setup_crosscomp() {
189
169
190
170
function setup_all_crosscomp() {
191
171
local dist
192
- for dist in jessie stretch buster; do
172
+ for dist in stretch buster; do
193
173
setup_crosscomp " $dist "
194
174
done
195
175
}
You can’t perform that action at this time.
0 commit comments