Skip to content

Commit

Permalink
add -m64 clags when targeting mingw64, add -m32/-m64 to LDFLAGS
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Jan 8, 2015
1 parent 34636fa commit acc8089
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 1 addition & 3 deletions lib/Makefile.m32
Expand Up @@ -75,7 +75,7 @@ endif
endif

ifeq ($(ARCH),w64)
CFLAGS += -D_AMD64_
CFLAGS += -m64 -D_AMD64_
RCFLAGS += -F pe-x86-64
else
CFLAGS += -m32
Expand Down Expand Up @@ -323,5 +323,3 @@ $(PROOT)/include/curl/curlbuild.h:

$(LIBCARES_PATH)/libcares.a:
$(MAKE) -C $(LIBCARES_PATH) -f Makefile.m32


5 changes: 3 additions & 2 deletions src/Makefile.m32
Expand Up @@ -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

Expand Down Expand Up @@ -340,4 +342,3 @@ endif

distclean vclean: clean
@$(call DEL, $(curl_PROGRAMS))

0 comments on commit acc8089

Please sign in to comment.