Fix curl install using Intel compilers (#41380)

When using Intel to build curl, add 'CFLAGS=-we147' to the configure
args to fix error 'compiler does not halt on function prototype
mismatch'
This commit is contained in:
Dom Heinzeller 2023-12-01 17:24:05 -07:00 committed by GitHub
parent a632576231
commit ca164d6619
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -345,6 +345,12 @@ def determine_variants(cls, exes, version):
def command(self):
return Executable(self.prefix.bin.join("curl-config"))
def flag_handler(self, name, flags):
build_system_flags = []
if name == "cflags" and self.spec.compiler.name in ["intel", "oneapi"]:
build_system_flags = ["-we147"]
return flags, None, build_system_flags
class AutotoolsBuilder(AutotoolsBuilder):
def configure_args(self):