diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2021-07-01 00:13:47 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <wjp@usecode.org> | 2021-07-01 00:13:47 +0200 |
commit | 3986e7e7cf9c0fb4d6180ce4695f46aa687c9471 (patch) | |
tree | 3bde7ca5dc3c926dcb62bd7c611bd725d45a58dc /python | |
parent | c02ff2d5f1f8b64525ea3bd5a6552e88b46baa9a (diff) | |
download | astra-3986e7e7cf9c0fb4d6180ce4695f46aa687c9471.tar.gz astra-3986e7e7cf9c0fb4d6180ce4695f46aa687c9471.tar.bz2 astra-3986e7e7cf9c0fb4d6180ce4695f46aa687c9471.tar.xz astra-3986e7e7cf9c0fb4d6180ce4695f46aa687c9471.zip |
Restrict conda host env libstdc++-ng to prevent build errors on docker env
Diffstat (limited to 'python')
-rw-r--r-- | python/conda/libastra/meta.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/conda/libastra/meta.yaml b/python/conda/libastra/meta.yaml index 16ddf0e..4215fd1 100644 --- a/python/conda/libastra/meta.yaml +++ b/python/conda/libastra/meta.yaml @@ -21,6 +21,8 @@ requirements: host: - boost # [osx or linux] - cudatoolkit {{ cudatoolkit }} # [linux] + # libstdcxx-ng 9.3 introduces extra host system requirements on glibc + - libstdcxx-ng <9.3 # [linux] run: # See: https://github.com/conda-forge/conda-forge.github.io/issues/687#issuecomment-460095230 - {{ pin_compatible('cudatoolkit', max_pin='x.x') }} # [linux] |