We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to build with macos12.6 on a x86_64 CPU, python3.10 with default build options.
First error:
clang: error: the clang compiler does not support '-march=native'
This option was apparently not available for clang on ARM before v15.0.0
Using HDF5PLUGIN_NATIVE=False fixes it error, but build fails later with:
HDF5PLUGIN_NATIVE=False
src/c-blosc/blosc/bitshuffle-avx2.c:22:4: error: AVX2 is not supported by the target architecture/platform and/or this compiler. ...
This seems to be due to building fat library (-arch arm64 -arch x86_64 options) with initial option detection being run only on host architecture.
-arch arm64 -arch x86_64
The text was updated successfully, but these errors were encountered:
universal2
c-blosc
zstd
Successfully merging a pull request may close this issue.
Failed to build with macos12.6 on a x86_64 CPU, python3.10 with default build options.
First error:
This option was apparently not available for clang on ARM before v15.0.0
Using
HDF5PLUGIN_NATIVE=False
fixes it error, but build fails later with:This seems to be due to building fat library (
-arch arm64 -arch x86_64
options) with initial option detection being run only on host architecture.The text was updated successfully, but these errors were encountered: