legion%oneapi@2025: cxxflags add -Wno-error=missing-template-arg-list-after-template-kw (#47478)
This commit is contained in:
parent
3665c5c01b
commit
dd26732897
@ -310,6 +310,12 @@ def validate_gasnet_root(value):
|
||||
"sysomp", default=False, description="Use system OpenMP implementation instead of Realm's"
|
||||
)
|
||||
|
||||
def flag_handler(self, name, flags):
|
||||
if name == "cxxflags":
|
||||
if self.spec.satisfies("%oneapi@2025:"):
|
||||
flags.append("-Wno-error=missing-template-arg-list-after-template-kw")
|
||||
return (flags, None, None)
|
||||
|
||||
def cmake_args(self):
|
||||
spec = self.spec
|
||||
from_variant = self.define_from_variant
|
||||
|
Loading…
Reference in New Issue
Block a user