pixman: avoid assembler macros error with Fujitsu compiler (#43362)

This commit is contained in:
Kensuke WATANABE 2024-03-28 18:10:59 +09:00 committed by GitHub
parent 0b2c370a83
commit f76eb993aa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -74,4 +74,8 @@ def configure_args(self):
if self.spec.target.family == "aarch64":
args.append("--disable-arm-a64-neon")
# The Fujitsu compiler does not support assembler macros.
if self.spec.satisfies("%fj"):
args.append("--disable-arm-a64-neon")
return args