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 am working on a Windows 10 machine, which does not natively come with gzip installed. I installed GNU zip from GnuWin here, which as it turns out does not create a gunzip.bat available for writing gunzip ... commands the command line.
The simplest workaround is for me to change each of the three Makefile lines containing gunzip, replacing those commands with the gzip -d command, since the gunzip command is equivalent to adding the -d or --decompress flags after the gzip command.
Making this small change to the Makefile might add some convenience for Windows users who had a similar issue to me. Or if you want to close this issue without changing the Makefile, hopefully this note helps some other Windows user troubleshoot.
The text was updated successfully, but these errors were encountered:
I am working on a Windows 10 machine, which does not natively come with
gzip
installed. I installed GNU zip from GnuWin here, which as it turns out does not create agunzip.bat
available for writinggunzip ...
commands the command line.The simplest workaround is for me to change each of the three Makefile lines containing
gunzip
, replacing those commands with thegzip -d
command, since thegunzip
command is equivalent to adding the-d
or--decompress
flags after thegzip
command.Making this small change to the Makefile might add some convenience for Windows users who had a similar issue to me. Or if you want to close this issue without changing the Makefile, hopefully this note helps some other Windows user troubleshoot.
The text was updated successfully, but these errors were encountered: