diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-09-14 10:33:21 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-09-16 13:06:22 +0000 |
commit | a3c287d7a3cd7dcdc3c81eeb0ad90712cfa93406 (patch) | |
tree | 75143da7eed3f61a478b9a49c723ae57359bee22 /util/crossgcc | |
parent | b8e5baf2f2f5ddc8908280fe86f45081c8271729 (diff) |
crossgcc [binutils]: Remove 'enable-plugins' option
unneeded 'enable-plugins' option sneaked in..., so remove it.
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Change-Id: Id1d7f2c7e6b70c28e1060c6ee915363ffe412ef6
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67645
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/crossgcc')
-rwxr-xr-x | util/crossgcc/buildgcc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 3bda018369..97d98b1977 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -684,8 +684,8 @@ build_BINUTILS() { CC="$(hostcc target)" CXX="$(hostcxx target)" \ ../binutils-${BINUTILS_VERSION}/configure --prefix="$TARGETDIR" \ --target=${TARGETARCH} --enable-targets=${TARGETARCH}${ADDITIONALTARGET} \ - --disable-werror --disable-nls --enable-lto --enable-gold \ - --enable-multilib --enable-plugins \ + --disable-werror --disable-nls --enable-lto \ + --enable-gold --enable-multilib \ CFLAGS="$HOSTCFLAGS" \ CXXFLAGS="$HOSTCFLAGS" \ || touch .failed |