SQLite shouldn't be enabled by default for TAU package (#15228)

Also Adding conflict for SQLite and ADIOS2 for older TAU releases
This commit is contained in:
Kevin Huck 2020-02-26 15:14:09 -08:00 committed by GitHub
parent 578e8031ce
commit ebd248b27e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,7 +68,7 @@ class Tau(Package):
variant('fortran', default=darwin_default, description='Activates Fortran support')
variant('io', default=True, description='Activates POSIX I/O support')
variant('adios2', default=False, description='Activates ADIOS2 output support')
variant('sqlite', default=True, description='Activates SQLite3 output support')
variant('sqlite', default=False, description='Activates SQLite3 output support')
# Support cross compiling.
# This is a _reasonable_ subset of the full set of TAU
@ -100,6 +100,10 @@ class Tau(Package):
conflicts('+libelf', when='@:2.28.0')
conflicts('+libdwarf', when='@:2.28.0')
# ADIOS2, SQLite only available from 2.29.1 on
conflicts('+adios2', when='@:2.29.1')
conflicts('+sqlite', when='@:2.29.1')
filter_compiler_wrappers('tau_cc.sh', 'Makefile.tau', relative_root='bin')
def set_compiler_options(self, spec):