it seems like there was a bug in the version of APEX that we set by default in 1.5.x (#21391)

This commit is contained in:
albestro
2021-01-29 16:51:28 +01:00
committed by GitHub
parent 9761c13878
commit 47c85059fb

View File

@@ -166,4 +166,8 @@ def cmake_args(self):
self.define('OTF2_ROOT', spec['otf2'].prefix), self.define('OTF2_ROOT', spec['otf2'].prefix),
] ]
# it seems like there was a bug in the default version of APEX in 1.5.x
if spec.satisfies("@:1.5"):
args += [self.define('HPX_WITH_APEX_TAG', "v2.3.0")]
return args return args