diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-07-01 18:24:31 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-09-16 13:05:44 +0000 |
commit | b8e5baf2f2f5ddc8908280fe86f45081c8271729 (patch) | |
tree | 4deb1170810a6fc27bede5755ebde313d6148be8 /util | |
parent | 5d8fe86db2de0036b190e164e5926262404afcb8 (diff) |
crossgcc [binutils]: Remove invalid enable-interwork option
'enable-interwork' is not a binutils configure option.
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: I29cd6137c700ff6871868a723daf33909aa218ff
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65609
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'util')
-rwxr-xr-x | util/crossgcc/buildgcc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 38301607bd..3bda018369 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -685,8 +685,7 @@ build_BINUTILS() { ../binutils-${BINUTILS_VERSION}/configure --prefix="$TARGETDIR" \ --target=${TARGETARCH} --enable-targets=${TARGETARCH}${ADDITIONALTARGET} \ --disable-werror --disable-nls --enable-lto --enable-gold \ - --enable-interwork --enable-multilib \ - --enable-plugins \ + --enable-multilib --enable-plugins \ CFLAGS="$HOSTCFLAGS" \ CXXFLAGS="$HOSTCFLAGS" \ || touch .failed |