diff --git a/var/spack/repos/builtin/packages/gcc/package.py b/var/spack/repos/builtin/packages/gcc/package.py index f220d8f5f3d..b5767c60538 100644 --- a/var/spack/repos/builtin/packages/gcc/package.py +++ b/var/spack/repos/builtin/packages/gcc/package.py @@ -826,18 +826,6 @@ def configure_args(self): if spec.satisfies("languages=jit"): options.append("--enable-host-shared") - # Binutils - if spec.satisfies("+binutils"): - binutils = spec["binutils"].prefix.bin - options.extend( - [ - "--with-gnu-ld", - "--with-ld=" + binutils.ld, - "--with-gnu-as", - "--with-as=" + binutils.join("as"), - ] - ) - # enable_bootstrap if spec.satisfies("+bootstrap"): options.extend(["--enable-bootstrap"])