diff options
author | Cameron Youell <cameronyouell@gmail.com> | 2023-03-28 01:55:10 +1100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2023-03-27 16:13:48 +0100 |
commit | 0471ec05675809a346ce1f5c011b996456b8967f (patch) | |
tree | 8599bfa4c465ae845c7e48acf22325fc6b567801 /Meta/serenity.sh | |
parent | afc067bc380f0bebef9b9d1518dff4e90f805ec6 (diff) | |
download | serenity-0471ec05675809a346ce1f5c011b996456b8967f.zip |
Toolchain: Update binutils to version 2.40
Diffstat (limited to 'Meta/serenity.sh')
-rwxr-xr-x | Meta/serenity.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/serenity.sh b/Meta/serenity.sh index 157926af5a..7b65f4a945 100755 --- a/Meta/serenity.sh +++ b/Meta/serenity.sh @@ -315,7 +315,7 @@ ensure_toolchain() { if [ "$TOOLCHAIN_TYPE" = "GNU" ]; then local ld_version ld_version="$("$TOOLCHAIN_DIR"/bin/"$TARGET"-pc-serenity-ld -v)" - local expected_version="GNU ld (GNU Binutils) 2.39" + local expected_version="GNU ld (GNU Binutils) 2.40" if [ "$ld_version" != "$expected_version" ]; then echo "Your toolchain has an old version of binutils installed." echo " installed version: \"$ld_version\"" |