mirror of
https://github.com/curl/curl.git
synced 2026-07-26 02:17:18 +03:00
Some MinGW makefile tweaks for MinGW64.
This commit is contained in:
parent
b98594c8bf
commit
f02325ea65
2 changed files with 16 additions and 0 deletions
|
|
@ -50,8 +50,16 @@ ifndef LIBCARES_PATH
|
|||
LIBCARES_PATH = ../ares
|
||||
endif
|
||||
|
||||
# Edit the var below to set to your architecture or set environment var.
|
||||
ifndef ARCH
|
||||
ARCH = w32
|
||||
endif
|
||||
|
||||
CC = gcc
|
||||
CFLAGS = -g -O2 -Wall
|
||||
ifeq ($(ARCH),w64)
|
||||
CFLAGS += -D_AMD64_
|
||||
endif
|
||||
# comment LDFLAGS below to keep debug info
|
||||
LDFLAGS = -s
|
||||
AR = ar
|
||||
|
|
|
|||
|
|
@ -50,8 +50,16 @@ ifndef LIBCARES_PATH
|
|||
LIBCARES_PATH = ../ares
|
||||
endif
|
||||
|
||||
# Edit the var below to set to your architecture or set environment var.
|
||||
ifndef ARCH
|
||||
ARCH = w32
|
||||
endif
|
||||
|
||||
CC = gcc
|
||||
CFLAGS = -g -O2 -Wall
|
||||
ifeq ($(ARCH),w64)
|
||||
CFLAGS += -D_AMD64_
|
||||
endif
|
||||
# comment LDFLAGS below to keep debug info
|
||||
LDFLAGS = -s
|
||||
RC = windres
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue