diff options
author | Marcel Raad <raad@teamviewer.com> | 2017-06-14 23:22:26 +0200 |
---|---|---|
committer | Marcel Raad <raad@teamviewer.com> | 2017-06-16 22:32:22 +0200 |
commit | ce2cc568f822605ae4258ec25b87b59b24c7bd19 (patch) | |
tree | d00caa37a4879d119afab499bbb9ab3f566946ed /docs | |
parent | 5bdf835c0b2e558ec885ba539f6b6307c4ab9787 (diff) | |
download | curl-ce2cc568f822605ae4258ec25b87b59b24c7bd19.tar.gz |
Makefile.m32: enable -W for MinGW32 build
The configure-based build also has this in addition to -Wall.
Closes https://github.com/curl/curl/pull/1578
Diffstat (limited to 'docs')
-rw-r--r-- | docs/examples/Makefile.m32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/Makefile.m32 b/docs/examples/Makefile.m32 index e75b6d130..5fbc5d66c 100644 --- a/docs/examples/Makefile.m32 +++ b/docs/examples/Makefile.m32 @@ -84,7 +84,7 @@ endif endif CC = $(CROSSPREFIX)gcc -CFLAGS = -g -O2 -Wall +CFLAGS = -g -O2 -Wall -W CFLAGS += -fno-strict-aliasing ifeq ($(ARCH),w64) CFLAGS += -m64 -D_AMD64_ |