From a5c7e1ee44daaaee3f593f6529525eba1a71d382 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20R=C3=B3=C5=BCa=C5=84ski?= Date: Tue, 14 Jan 2025 13:31:37 +0100 Subject: [PATCH] debug windows build --- Makefile | 2 ++ Makefile-libs.Inc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4b7fa805d0..215b263e21 100644 --- a/Makefile +++ b/Makefile @@ -71,6 +71,8 @@ install: .PHONY: install build: go-spacemesh get-profiler get-postrs-service + tree build + echo $(CGO_CFLAGS) .PHONY: build get-libs: get-postrs-lib get-postrs-service get-athena-lib diff --git a/Makefile-libs.Inc b/Makefile-libs.Inc index a84068dfd1..4624a80132 100644 --- a/Makefile-libs.Inc +++ b/Makefile-libs.Inc @@ -115,7 +115,7 @@ $(BIN_DIR).athena.version.$(ATHENA_SETUP_REV): $(PROJ_DIR)$(ATHENA_SETUP_ARTIFAC $(BINDIR_ATHENA_SETUP_LIBS): $(BIN_DIR).athena.version.$(ATHENA_SETUP_REV) mkdir -p $(dir $@) ifeq ($(GOOS),windows) - unzip -DD -o -j $(subst /,\\,$(PROJ_DIR)$(ATHENA_SETUP_ARTIFACT)) -d $(subst /,\\,$(BIN_DIR)) $(subst $(BIN_DIR),,$@) + unzip -DD -o $(PROJ_DIR)$(ATHENA_SETUP_ARTIFACT) -d $(BIN_DIR) $(subst $(BIN_DIR),,$@) else tar xzf $(PROJ_DIR)$(ATHENA_SETUP_ARTIFACT) -C $(BIN_DIR) $(subst $(BIN_DIR),,$@) endif