From dd185edf9631b7b1575d48ce13e2cd8652cc94f7 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 16 Jul 2022 00:30:44 +0100 Subject: [PATCH] Revert a few things to get zstd working in wasm, deal with it later Signed-off-by: falkTX --- deps/Makefile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/deps/Makefile b/deps/Makefile index 553a013..e6f2ede 100644 --- a/deps/Makefile +++ b/deps/Makefile @@ -106,12 +106,7 @@ ENV += LDFLAGS='$(LINK_FLAGS)' SPACE = SPACE += -ifeq ($(WASM),true) -CMAKE = emcmake cmake -else -CMAKE = cmake -endif - +CMAKE = cmake CMAKE += -DCMAKE_INSTALL_LIBDIR=lib CMAKE += -DCMAKE_INSTALL_PREFIX='$(DEP_PATH)' CMAKE += -DBUILD_SHARED_LIBS=OFF @@ -131,10 +126,6 @@ $(error CI build requires -mmacosx-version-min flag on macOS) endif endif -ifeq ($(CROSS_COMPILING),true) -CMAKE += -DCMAKE_CROSSCOMPILING=ON -endif - # make sure debug/release matches ifeq ($(DEBUG),true) CMAKE += -DCMAKE_BUILD_TYPE=Debug