diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2016-06-21 13:23:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-21 13:23:58 -0700 |
commit | 8b5467e65dae2c49303280c8a71c925adfcc8827 (patch) | |
tree | 408b73ed6cb8a95c06fcfcec693f09476aa5969f /var/spack/repos/builtin/packages/binutils/package.py | |
parent | bbe2db58145cd19391bc5a31a974b8bd1436de67 (diff) | |
parent | 77cd474a2d129bf0df932a09e1e50ae05c6f7eff (diff) | |
download | spack-8b5467e65dae2c49303280c8a71c925adfcc8827.tar.gz spack-8b5467e65dae2c49303280c8a71c925adfcc8827.tar.bz2 spack-8b5467e65dae2c49303280c8a71c925adfcc8827.tar.xz spack-8b5467e65dae2c49303280c8a71c925adfcc8827.zip |
Merge pull request #1049 from glennpj/newR_database
New R database packages
Diffstat (limited to 'var/spack/repos/builtin/packages/binutils/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/binutils/package.py | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/binutils/package.py b/var/spack/repos/builtin/packages/binutils/package.py index 5f305abb02..35d52128c3 100644 --- a/var/spack/repos/builtin/packages/binutils/package.py +++ b/var/spack/repos/builtin/packages/binutils/package.py @@ -24,11 +24,12 @@ ############################################################################## from spack import * + class Binutils(Package): """GNU binutils, which contain the linker, assembler, objdump and others""" - homepage = "http://www.gnu.org/software/binutils/" - url="https://ftp.gnu.org/gnu/binutils/binutils-2.25.tar.bz2" + homepage = "http://www.gnu.org/software/binutils/" + url = "https://ftp.gnu.org/gnu/binutils/binutils-2.25.tar.bz2" # 2.26 is incompatible with py-pillow build for some reason. version('2.26', '64146a0faa3b411ba774f47d41de239f') @@ -41,12 +42,15 @@ class Binutils(Package): 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.") + # 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") patch('binutilskrell-2.24.patch', when='@2.24+krellpatch') patch('cr16.patch') + patch('update_symbol-2.26.patch', when='@2.26') variant('libiberty', default=False, description='Also install libiberty.') |