diff options
author | Viktor Szakats <vszakats@users.noreply.github.com> | 2015-01-08 18:19:03 +0100 |
---|---|---|
committer | Viktor Szakats <vszakats@users.noreply.github.com> | 2015-01-08 18:19:03 +0100 |
commit | acc8089bc20636067d94778b1dec4fb6b81ccffa (patch) | |
tree | 6d18bc8d99fdb8dfae4f822e327a335b03ef7816 /src | |
parent | 34636fa47e494735a5ec8b5ec7181ce6688f6f12 (diff) | |
download | curl-acc8089bc20636067d94778b1dec4fb6b81ccffa.tar.gz |
add -m64 clags when targeting mingw64, add -m32/-m64 to LDFLAGS
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.m32 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile.m32 b/src/Makefile.m32 index e54175ced..f3f9054f9 100644 --- a/src/Makefile.m32 +++ b/src/Makefile.m32 @@ -90,10 +90,12 @@ endif endif ifeq ($(ARCH),w64) -CFLAGS += -D_AMD64_ +CFLAGS += -m64 -D_AMD64_ +LDFLAGS += -m64 RCFLAGS += -F pe-x86-64 else CFLAGS += -m32 +LDFLAGS += -m32 RCFLAGS += -F pe-i386 endif @@ -340,4 +342,3 @@ endif distclean vclean: clean @$(call DEL, $(curl_PROGRAMS)) - |