Skip to content
Snippets Groups Projects
Unverified Commit 37f48988 authored by Axel Huebl's avatar Axel Huebl
Browse files

Defaults: MPI=True, Fortran=False

- ADIOS is mainly a parallel I/O library
- a Fortran compiler is non-standard in a minimal install
parent b33777fd
No related branches found
No related tags found
No related merge requests found
...@@ -47,10 +47,10 @@ class Adios(Package): ...@@ -47,10 +47,10 @@ class Adios(Package):
variant('shared', default=True, variant('shared', default=True,
description='Builds a shared version of the library') description='Builds a shared version of the library')
variant('fortran', default=True, variant('fortran', default=False,
description='Enable Fortran bindings support') description='Enable Fortran bindings support')
variant('mpi', default=False, description='Enable MPI support') variant('mpi', default=True, description='Enable MPI support')
variant('infiniband', default=False, description='Enable infiniband support') variant('infiniband', default=False, description='Enable infiniband support')
variant('zlib', default=True, description='Enable szip transform support') variant('zlib', default=True, description='Enable szip transform support')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment