Update and clean up hdf-eos2 package.py to fix build errors with Intel oneAPI (#45399)

This commit is contained in:
Dom Heinzeller 2024-07-23 16:54:12 +02:00 committed by GitHub
parent 13ba1b96c3
commit fc0955b125
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -120,9 +120,11 @@ def fix_configure(self):
filter_file("CC=./\\$SZIP_CC", "", "configure")
def flag_handler(self, name, flags):
if self.spec.compiler.name == "apple-clang":
if name == "cflags":
if name == "cflags":
flags.append(self.compiler.cc_pic_flag)
if self.spec.compiler.name in ["apple-clang", "oneapi"]:
flags.append("-Wno-error=implicit-function-declaration")
flags.append("-Wno-error=implicit-int")
return flags, None, None
@ -160,15 +162,4 @@ def configure_args(self):
if "zlib" in self.spec:
extra_args.append("--with-zlib={0}".format(self.spec["zlib-api"].prefix))
# https://forum.hdfgroup.org/t/help-building-hdf4-with-clang-error-implicit-declaration-of-function-test-mgr-szip-is-invalid-in-c99/7680
# -fPIC: https://github.com/spack/spack/issues/43792
if self.spec.satisfies("%apple-clang"):
extra_args.append(
"CFLAGS=-Wno-error=implicit-function-declaration {0}".format(
self.compiler.cc_pic_flag
)
)
else:
extra_args.append("CFLAGS={0}".format(self.compiler.cc_pic_flag))
return extra_args