From b0f939bfafe6f7cb39e1511efd00139995af4715 Mon Sep 17 00:00:00 2001 From: Leander Beernaert Date: Mon, 31 Oct 2022 17:30:26 +0100 Subject: [PATCH] Other: Do not compile go bridge as win32 app Compile as console application so that we can inspect trace outputs and IMAP/SMTP Commands. Note: This needs to be reverted before release. --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 72455e58..95869f54 100644 --- a/Makefile +++ b/Makefile @@ -34,8 +34,9 @@ ifneq "${BUILD_LDFLAGS}" "" endif GO_LDFLAGS_LAUNCHER:=${GO_LDFLAGS} ifeq "${TARGET_OS}" "windows" - GO_LDFLAGS+=-H=windowsgui - GO_LDFLAGS_LAUNCHER+=-H=windowsgui + #Temporarily disable this so we can inspect trace logs from the bridge for debugging + #GO_LDFLAGS+=-H=windowsgui + #GO_LDFLAGS_LAUNCHER+=-H=windowsgui endif BUILD_FLAGS+=-ldflags '${GO_LDFLAGS}'