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
By the way, the previous patch release (visible at https://anaconda.org/anaconda/libstdcxx-ng/files ; in fact the new _2 package is not visible yet) had the necessary symbols. So, this only just started being broken three days ago, according to the timestamp on the new package version.
Also, the error message you get when this is broken is:
$ cmake --version
cmake: /private/home/ezyang/pytorch/env/bin/../lib/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by cmake)
cmake: /private/home/ezyang/pytorch/env/bin/../lib/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by cmake)
cmake: /private/home/ezyang/pytorch/env/bin/../lib/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by cmake)
The text was updated successfully, but these errors were encountered:
@ezyang Can you provide the output of conda list in the environment that is causing issues.
My guess is that the libstdc++.so file from the gcc-4.8.5-7.tar.bz2 package is clobbering the libstdc++.so from libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2. Is gcc 4.8.5 installed in that environment?
The gcc package should not be used with the newer libraries. If compilers are needed the gcc_linux-64 and gxx_linux-64 packages should be used.
Take a look at https://anaconda.org/anaconda/cmake/3.9.1/download/linux-64/cmake-3.9.1-hd1fb129_0.tar.bz2 which is the most recent upload for cmake on linux64:
This requires a more recent libstdc++ than Anaconda is currently shipping, see https://repo.continuum.io/pkgs/main/linux-64/libstdcxx-ng-7.2.0-h7a57d05_2.tar.bz2 (also c.f. #483)
By the way, the previous patch release (visible at https://anaconda.org/anaconda/libstdcxx-ng/files ; in fact the new _2 package is not visible yet) had the necessary symbols. So, this only just started being broken three days ago, according to the timestamp on the new package version.
CC @kalefranz who is marked as the uploader for libstdcxx-ng on https://anaconda.org/anaconda/libstdcxx-ng/files
Also, the error message you get when this is broken is:
The text was updated successfully, but these errors were encountered: