aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--build.bat2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b262f9bb..0ddcd353 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-export CFLAGS := -O3 -Wall -std=gnu11
GOFLAGS := -ldflags="-H windowsgui -s -w" -v
export CGO_ENABLED := 1
+export CGO_CFLAGS := -O3 -Wall -Wno-switch -std=gnu11 -DWINVER=0x0601
export GOOS := windows
OLD_GOROOT := $(GOROOT)
export GOROOT := $(PWD)/.deps/goroot
diff --git a/build.bat b/build.bat
index bb3d00f6..9bddfcfa 100644
--- a/build.bat
+++ b/build.bat
@@ -30,11 +30,11 @@ if exist .deps\prepared goto :render
:build
set PATH=%STARTDIR%\.deps\go\bin\;%PATH%
- set CFLAGS=-O3 -Wall -std=gnu11
set GOOS=windows
set GOPATH=%STARTDIR%\.deps\gopath
set GOROOT=%STARTDIR%\.deps\go
set CGO_ENABLED=1
+ set CGO_CFLAGS=-O3 -Wall -Wno-switch -std=gnu11 -DWINVER=0x0601
call :build_plat x86 i686 386 || goto :error
call :build_plat amd64 x86_64 amd64 || goto :error