Update and clean up hdf-eos2 package.py to fix build errors with Intel oneAPI (#45399)
This commit is contained in:
parent
13ba1b96c3
commit
fc0955b125
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user