From 4f7ed7a94c01e09570b4e5fa9ad16988c2905121 Mon Sep 17 00:00:00 2001 From: NatureFreshMilk Date: Mon, 28 Jan 2019 09:53:38 +0100 Subject: [PATCH] windows 64bit version --- server/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/server/Makefile b/server/Makefile index 7cae69a..ada0960 100644 --- a/server/Makefile +++ b/server/Makefile @@ -24,5 +24,6 @@ build: $(STATIC_VFS) $(OUT_DIR) CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -o $(OUT_DIR)/mapserver-linux-x86_64 # apt install gcc-mingw-w64 GOARCH=386 GOOS=windows CC=i686-w64-mingw32-gcc CGO_ENABLED=1 go build -o $(OUT_DIR)/mapserver-windows-x86.exe + GOARCH=amd64 GOOS=windows CC=x86_64-w64-mingw32-gcc CGO_ENABLED=1 go build -o $(OUT_DIR)/mapserver-windows-x86-64.exe # apt install gcc-5-arm-linux-gnueabihf, TODO: container GOARCH=arm GOARM=7 CC=arm-linux-gnueabihf-gcc-5 CGO_ENABLED=1 go build -ldflags "-linkmode external -extldflags -static" -o $(OUT_DIR)/mapserver-linux-arm