You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not exactly sure what's happening here, but we're seeing C-compilation errors (unable to find libcpp.algorithm) on the new catalina-xcode container that we did not see on mojave.
warning: include path for stdlibc++ headers not found; pass '-stdlib=libc++' on the
command line to use the libc++ standard library instead [-Wstdlibcxx-not-found]
c-blosc/internal-complibs/snappy-1.1.1/snappy-stubs-internal.cc:29:10: fatal error:
'algorithm' file not found
#include <algorithm>
This occurs while building numcodecs on mac, but only with python 3.6, so I assume their sdist may also be playing a role here? or perhaps its the only one in our dependencies that exposes the issue.
I am trying to fix this on my own, maybe by adding something to includes? but figured I would mention it in case there is a more general catalina thing that might be useful to include by default in the osx container... thanks.
The text was updated successfully, but these errors were encountered:
just wanted to add, for anyone who may come across this issue, adding: - export MACOSX_DEPLOYMENT_TARGET=10.10 before the pip install command solved this for me.
I suspect that's not something that should be modified on a global container level, so closing this issue.
I'm not exactly sure what's happening here, but we're seeing C-compilation errors (unable to find libcpp.algorithm) on the new
catalina-xcode
container that we did not see on mojave.(full task here https://cirrus-ci.com/task/6660339609632768?command=pip#L387-L455)
This occurs while building numcodecs on mac, but only with python 3.6, so I assume their sdist may also be playing a role here? or perhaps its the only one in our dependencies that exposes the issue.
this should be sufficient to replicate:
I am trying to fix this on my own, maybe by adding something to
includes
? but figured I would mention it in case there is a more general catalina thing that might be useful to include by default in the osx container... thanks.The text was updated successfully, but these errors were encountered: