MSYS2-packages: tar hangs on packages
For about two days tar
hangs on MSYS2 and MINGW packages which contain binaries on Windows 10 1809.
For testing I ran:
$ tar -tf ${package-name}*.pkg.tar.xz
In the Task Manager I noticed xz.exe
does not seem to be doing anything, but when interrupting tar
with CTRL+C
, it starts utilizing 50% of the CPU with no end in sight.
Yesterday I thought I was able to circumvent the problem by disabling Windows Defender, but that’s not working anymore, so I might as well be remembering it falsely.
I need this functionality for making a standalone distribution of my package. Do you have any suggestion on how to handle this?
About this issue
- Original URL
- State: closed
- Created 5 years ago
- Comments: 19 (5 by maintainers)
Commits related to this issue
- [BUILDTOOLCHAIN] Extract with bunzip2 and tar instead of "tar xjf" due to https://github.com/msys2/MSYS2-packages/issues/1548 — committed to reactos/RosBE by ColinFinck 5 years ago
- Call bzip2 directly due to msys2/MSYS2-packages#1548 — committed to andfoy/vision by andfoy 4 years ago
- PR: Add PyTorch FFmpeg to wheel and conda distributions (#2596) * Add PyTorch FFmpeg to wheel and conda distributions * Try to install wget from conda * Add yq flag on Mac * Correct copy ins... — committed to pytorch/vision by andfoy 4 years ago
- PR: Add PyTorch FFmpeg to wheel and conda distributions (#2596) * Add PyTorch FFmpeg to wheel and conda distributions * Try to install wget from conda * Add yq flag on Mac * Correct copy ins... — committed to bryant1410/vision-1 by andfoy 4 years ago
- PR: Add PyTorch FFmpeg to wheel and conda distributions (#2596) * Add PyTorch FFmpeg to wheel and conda distributions * Try to install wget from conda * Add yq flag on Mac * Correct copy ins... — committed to Quansight/vision by andfoy 4 years ago
OK, turning off Windows Defender’s real-time protection seems to allow the
xv | tar
pipeline to complete, but makes no difference to the directtar xJf
call…