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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -166,4 +166,8 @@ def cmake_args(self):
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