add -m64 clags when targeting mingw64, add -m32/-m64 to LDFLAGS

This commit is contained in:
Viktor Szakats
2015-01-08 18:19:03 +01:00
parent 34636fa47e
commit acc8089bc2
2 changed files with 4 additions and 5 deletions

View File

@@ -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))