Skip to content

Commit

Permalink
inflate: Ask zopfli for better compression
Browse files Browse the repository at this point in the history
  • Loading branch information
keirf committed Nov 30, 2023
1 parent b09a395 commit 14afbed
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion base/Rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ TOOL_PREFIX = m68k-unknown-elf-
CC = $(TOOL_PREFIX)gcc
OBJCOPY = $(TOOL_PREFIX)objcopy
PYTHON = python3
GZIP = zopfli
GZIP = zopfli --i32
#GZIP = gzip -fk9

ifneq ($(VERBOSE),1)
Expand Down
2 changes: 1 addition & 1 deletion inflate/pack_exe.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
MIN_COMPRESSION = 8

# Command for creating gzip files.
GZIP = "zopfli"
GZIP = "zopfli --i32"
#GZIP = "gzip -fk9"

# Prefix for intermediate (temporary) files.
Expand Down
2 changes: 1 addition & 1 deletion inflate/test_inflate.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import struct, sys, os

# Command for creating gzip files.
GZIP = "zopfli -c"
GZIP = "zopfli --i32 -c"
#GZIP = "gzip -c9"

HUNK_HEADER = 0x3f3
Expand Down

0 comments on commit 14afbed

Please sign in to comment.