diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-04-14 15:23:35 +0200 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-04-14 15:23:35 +0200 |
commit | 9e456acbab14dedf3217fac9421f97d3f7fa9e9f (patch) | |
tree | e8cbfb1f7c9acd2c3a60ae22d31217e0574fc4a4 | |
parent | d6a232dbe04cf92bf9fd42a2c5fb4233ef8edf71 (diff) | |
parent | 01fab24c156e82f2886b464a2474fe3474d5312a (diff) | |
download | spack-9e456acbab14dedf3217fac9421f97d3f7fa9e9f.tar.gz spack-9e456acbab14dedf3217fac9421f97d3f7fa9e9f.tar.bz2 spack-9e456acbab14dedf3217fac9421f97d3f7fa9e9f.tar.xz spack-9e456acbab14dedf3217fac9421f97d3f7fa9e9f.zip |
Merge pull request #779 from LLNL/bugfix/binutils-deps
binutils depends on flex and bison.
-rw-r--r-- | var/spack/repos/builtin/packages/binutils/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/binutils/package.py b/var/spack/repos/builtin/packages/binutils/package.py index 897539a439..b8064093d2 100644 --- a/var/spack/repos/builtin/packages/binutils/package.py +++ b/var/spack/repos/builtin/packages/binutils/package.py @@ -12,6 +12,10 @@ class Binutils(Package): version('2.23.2', '4f8fa651e35ef262edc01d60fb45702e') version('2.20.1', '2b9dc8f2b7dbd5ec5992c6e29de0b764') + depends_on('m4') + depends_on('flex') + depends_on('bison') + # Add a patch that creates binutils libiberty_pic.a which is preferred by OpenSpeedShop and cbtf-krell variant('krellpatch', default=False, description="build with openspeedshop based patch.") variant('gold', default=True, description="build the gold linker") |