From 7b647240e8b7da296bc138127ba8685ac74c627f Mon Sep 17 00:00:00 2001 From: feos Date: Sun, 19 May 2024 15:44:43 +0300 Subject: [PATCH] fix #3923 (#3924) Use fastest compression when compiling Waterbox cores in debug config --- waterbox/common.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waterbox/common.mak b/waterbox/common.mak index 0136ea2229..28b3ba0718 100644 --- a/waterbox/common.mak +++ b/waterbox/common.mak @@ -106,7 +106,7 @@ install: $(TARGET_RELEASE) install-debug: $(TARGET_DEBUG) @cp -f $< $(OUTPUTDLL_DIR) - @zstd --stdout --ultra -22 --threads=0 $< > $(OUTPUTDLL_DIR)/$(TARGET).zst + @zstd --stdout -1 --threads=0 $< > $(OUTPUTDLL_DIR)/$(TARGET).zst @cp $(OUTPUTDLL_DIR)/$(TARGET).zst $(OUTPUTDLLCOPY_DIR)/$(TARGET).zst 2> /dev/null || true @echo Debug build of $(TARGET) installed.