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:
parent
578e8031ce
commit
ebd248b27e
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user