From 4032fb47e87fc7b847183c32e2e3a0aa75d8e5df Mon Sep 17 00:00:00 2001 From: pstef <3462925+pstef@users.noreply.github.com> Date: Wed, 16 Apr 2025 06:29:31 +0000 Subject: [PATCH] Add missing compress.o object Statically built cores like blueMSX call compress(). --- Makefile.common | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.common b/Makefile.common index 01f9cce240..c9ed198348 100644 --- a/Makefile.common +++ b/Makefile.common @@ -2012,6 +2012,7 @@ ifeq ($(HAVE_BUILTINZLIB), 1) HAVE_ZLIB_COMMON = 1 OBJ += $(DEPS_DIR)/libz/adler32.o \ $(DEPS_DIR)/libz/libz-crc32.o \ + $(DEPS_DIR)/libz/compress.o \ $(DEPS_DIR)/libz/deflate.o \ $(DEPS_DIR)/libz/gzclose.o \ $(DEPS_DIR)/libz/gzlib.o \