-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
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
Conda package can't be built conda-forge docker image #10
Comments
I have circumvented this by disabling the compiler checks in the json library on my own fork. |
Fixed by installing gcc 5 on the docker image, see Can switch back to the main json repository again. |
FYI: I tried building on the conda docker image as well but was bold and tried GCC 7. It builds successfully, but when I have another package with pybind11 (but in C++11 mode!) imported in my python session, importing z5py segfaults immediately. I assume that's because of some pybind11 symbols being conflicted... |
The conda forge docker image uses GCC 4.8.
However, this version is not supported by the json library (see this issue nlohmann/json#212).
The packages on my channel are built on my machine with GCC 5.4.0.
If you need support for an older GCC version (ABI issues), please built the package yourself with GCC 4.9 (which is supported).
The text was updated successfully, but these errors were encountered: