Skip to content

Commit 36c0d78

Browse files
authored
Update binutils to 2.38 on illumos and solaris (#1641)
resolves #1639
2 parents 49338b1 + 446a06d commit 36c0d78

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.changes/1641.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"description": "Update binutils to 2.38 in illumos and solaris",
3+
"issues": [1639],
4+
"type": "changed"
5+
}

docker/illumos.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set -euo pipefail
1010

1111
main() {
1212
local arch="${1}"
13-
local binutils=2.28.1
13+
local binutils=2.38
1414
local gcc=8.4.0
1515
local target="${arch}-unknown-illumos"
1616
local build_target="${arch}-pc-solaris2.10"
@@ -22,6 +22,7 @@ main() {
2222
curl \
2323
g++ \
2424
make \
25+
texinfo \
2526
wget \
2627
xz-utils
2728

@@ -31,7 +32,7 @@ main() {
3132

3233
mkdir "${td}"/{binutils,gcc}{,-build} "${td}/illumos"
3334

34-
local binutils_sum="16328a906e55a3c633854beec8e9e255a639b366436470b4f6245eb0d2fde942"
35+
local binutils_sum="e316477a914f567eccc34d5d29785b8b0f5a10208d36bbacedcc39048ecfe024"
3536
download_binutils "${binutils}" "xz"
3637
real_sum=$(sha256sum "binutils-${binutils}.tar.xz" | cut -d ' ' -f 1)
3738
if [[ "${binutils_sum}" != "${real_sum}" ]]; then

docker/solaris.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ main() {
1010
local arch="${1}"
1111
local manufacturer="${2}"
1212

13-
local binutils=2.28.1 \
13+
local binutils=2.38 \
1414
gcc=8.4.0 \
1515
target="${arch}-${manufacturer}-solaris2.10"
1616

@@ -23,6 +23,7 @@ main() {
2323
make \
2424
patch \
2525
software-properties-common \
26+
texinfo \
2627
wget \
2728
xz-utils
2829

0 commit comments

Comments
 (0)