Skip to content

Commit

Permalink
Update libchdr + add zstd
Browse files Browse the repository at this point in the history
  • Loading branch information
sonninnos committed Sep 26, 2024
1 parent 7a8f808 commit 2fb25db
Show file tree
Hide file tree
Showing 602 changed files with 166,437 additions and 502 deletions.
16 changes: 13 additions & 3 deletions Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ ifeq ($(NEED_CD), 1)
endif

ifeq ($(HAVE_CHD), 1)
FLAGS += -DHAVE_CHD -D_7ZIP_ST
FLAGS += -DHAVE_CHD -D_7ZIP_ST -DZSTD_DISABLE_ASM
ifeq ($(SYSTEM_LIBCHDR), 1)
INCFLAGS += $(shell pkg-config --cflags libchdr)
LIBS += $(shell pkg-config --libs libchdr)
Expand All @@ -46,7 +46,8 @@ else
-I$(DEPS_DIR)/lzma/C \
-I$(DEPS_DIR)/libchdr \
-I$(DEPS_DIR)/libchdr/include \
-I$(DEPS_DIR)/libchdr/include/libchdr
-I$(DEPS_DIR)/libchdr/include/libchdr \
-I$(DEPS_DIR)/zstd/lib
endif
endif

Expand Down Expand Up @@ -129,7 +130,16 @@ SOURCES_C += \
$(LIBCHDR_DIR)/libchdr_cdrom.c \
$(LIBCHDR_DIR)/libchdr_chd.c \
$(LIBCHDR_DIR)/libchdr_flac.c \
$(LIBCHDR_DIR)/libchdr_huffman.c
$(LIBCHDR_DIR)/libchdr_huffman.c \
$(DEPS_DIR)/zstd/lib/common/entropy_common.c \
$(DEPS_DIR)/zstd/lib/common/error_private.c \
$(DEPS_DIR)/zstd/lib/common/fse_decompress.c \
$(DEPS_DIR)/zstd/lib/common/zstd_common.c \
$(DEPS_DIR)/zstd/lib/common/xxhash.c \
$(DEPS_DIR)/zstd/lib/decompress/huf_decompress.c \
$(DEPS_DIR)/zstd/lib/decompress/zstd_ddict.c \
$(DEPS_DIR)/zstd/lib/decompress/zstd_decompress.c \
$(DEPS_DIR)/zstd/lib/decompress/zstd_decompress_block.c
endif

SOURCES_CXX += $(CDROM_DIR)/CDAccess_CHD.cpp
Expand Down
Loading

0 comments on commit 2fb25db

Please sign in to comment.