diff options
author | Soumith Chintala <soumith@gmail.com> | 2018-05-03 12:32:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-03 12:32:57 -0700 |
commit | 92f54e1f0152ccee11cdcf5a60c7b8eff9fddef7 (patch) | |
tree | bb55687db5dc951f1af45bdeb41f57f481afd000 /tools | |
parent | 3ae92b3a8b4c30c8a2a406e9246840f5de021780 (diff) | |
download | pytorch-92f54e1f0152ccee11cdcf5a60c7b8eff9fddef7.tar.gz pytorch-92f54e1f0152ccee11cdcf5a60c7b8eff9fddef7.tar.bz2 pytorch-92f54e1f0152ccee11cdcf5a60c7b8eff9fddef7.zip |
remove static libstdc++ linking and PYTORCH_BINARY_BUILD env variable (#7259)
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/build_pytorch_libs.sh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tools/build_pytorch_libs.sh b/tools/build_pytorch_libs.sh index e2f7e23348..9304025d98 100755 --- a/tools/build_pytorch_libs.sh +++ b/tools/build_pytorch_libs.sh @@ -293,12 +293,4 @@ if [ -d "$INSTALL_DIR/bin/" ]; then cp "$INSTALL_DIR/bin/"/* . fi -# this is for binary builds -if [[ $PYTORCH_BINARY_BUILD && $PYTORCH_SO_DEPS ]] -then - echo "Copying over dependency libraries $PYTORCH_SO_DEPS" - # copy over dependency libraries into the current dir - cp "$PYTORCH_SO_DEPS" . -fi - popd |