summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorMichael Kuhn <michael.kuhn@informatik.uni-hamburg.de>2020-05-11 23:54:28 +0200
committerGitHub <noreply@github.com>2020-05-11 16:54:28 -0500
commit35c3478fcd5063199f9d2a45402209c2149a3f51 (patch)
treeffce893441c12ed931a513d31d8dd616e2fbc0bb /var
parent97779e3539b34d15fde1a1be296efe40790b10dd (diff)
downloadspack-35c3478fcd5063199f9d2a45402209c2149a3f51.tar.gz
spack-35c3478fcd5063199f9d2a45402209c2149a3f51.tar.bz2
spack-35c3478fcd5063199f9d2a45402209c2149a3f51.tar.xz
spack-35c3478fcd5063199f9d2a45402209c2149a3f51.zip
fio: Add 3.19 (#16571)
Earlier versions are not compatible with gcc@10:.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/fio/package.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/fio/package.py b/var/spack/repos/builtin/packages/fio/package.py
index 90064be1d5..4fdc44fae2 100644
--- a/var/spack/repos/builtin/packages/fio/package.py
+++ b/var/spack/repos/builtin/packages/fio/package.py
@@ -16,6 +16,7 @@ class Fio(AutotoolsPackage):
homepage = "https://github.com/axboe/fio"
url = "https://github.com/axboe/fio/archive/fio-2.19.tar.gz"
+ version('3.19', sha256='809963b1d023dbc9ac7065557af8129aee17b6895e0e8c5ca671b0b14285f404')
version('3.16', sha256='c7731a9e831581bab7104da9ea60c9f44e594438dbe95dff26726ca0285e7b93')
version('2.19', sha256='61fb03a18703269b781aaf195cb0d7931493bbb5bfcc8eb746d5d66d04ed77f7')
@@ -32,6 +33,9 @@ class Fio(AutotoolsPackage):
conflicts('+libaio', when='platform=darwin',
msg='libaio does not support Darwin')
+ conflicts('@:3.18', when='%gcc@10:',
+ msg='gcc@10: sets -fno-common by default')
+
def configure_args(self):
config_args = []