diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-07-01 17:50:23 +0200 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-09-14 17:13:02 +0000 |
commit | 8de4d27810b8530acd8418fd7511258eea4b055d (patch) | |
tree | 99ca619ede29c445a6571d77d90a707b5dd61762 /util/crossgcc | |
parent | c3aa6592868f6b9613564aaccbf6a0e655af07d5 (diff) |
crossgcc: binutils: Remove invalid enable-multilibs option
Looks like somewhere after the original implementation it was renamed to
--enable-multilib without the s.
'enable-multilibs' is not a valid option for binutils.
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: I105cc9fa489aed24905dedb785c70bc69ed18970
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65608
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'util/crossgcc')
-rwxr-xr-x | util/crossgcc/buildgcc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 03c24da1be..38301607bd 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -686,7 +686,7 @@ build_BINUTILS() { --target=${TARGETARCH} --enable-targets=${TARGETARCH}${ADDITIONALTARGET} \ --disable-werror --disable-nls --enable-lto --enable-gold \ --enable-interwork --enable-multilib \ - --enable-plugins --enable-multilibs \ + --enable-plugins \ CFLAGS="$HOSTCFLAGS" \ CXXFLAGS="$HOSTCFLAGS" \ || touch .failed |