rename x86_64 -> x64 for Windows
This commit is contained in:
parent
65212bbeb2
commit
112287088e
2 changed files with 13 additions and 8 deletions
14
Makefile
14
Makefile
|
@ -484,7 +484,7 @@ ifeq ($(PLATFORM),mingw32)
|
|||
CLIENT_CFLAGS += -DUSE_CODEC_VORBIS
|
||||
endif
|
||||
|
||||
ifeq ($(ARCH),x86_64)
|
||||
ifeq ($(ARCH),x64)
|
||||
OPTIMIZEVM = -O3 -fno-omit-frame-pointer \
|
||||
-falign-loops=2 -funroll-loops -falign-jumps=2 -falign-functions=2 \
|
||||
-fstrength-reduce
|
||||
|
@ -515,7 +515,7 @@ ifeq ($(PLATFORM),mingw32)
|
|||
ifneq ($(USE_CURL_DLOPEN),1)
|
||||
ifeq ($(USE_LOCAL_HEADERS),1)
|
||||
CLIENT_CFLAGS += -DCURL_STATICLIB
|
||||
ifeq ($(ARCH),x86_64)
|
||||
ifeq ($(ARCH),x64)
|
||||
CLIENT_LIBS += $(LIBSDIR)/win64/libcurl.a
|
||||
else
|
||||
CLIENT_LIBS += $(LIBSDIR)/win32/libcurl.a
|
||||
|
@ -895,9 +895,7 @@ endif
|
|||
|
||||
ifeq ($(USE_INTERNAL_ZLIB),1)
|
||||
BASE_CFLAGS += -DNO_GZIP
|
||||
ifneq ($(USE_LOCAL_HEADERS),1)
|
||||
BASE_CFLAGS += -I$(ZDIR)
|
||||
endif
|
||||
BASE_CFLAGS += -I$(ZDIR)
|
||||
else
|
||||
LIBS += -lz
|
||||
endif
|
||||
|
@ -1550,6 +1548,9 @@ ifeq ($(HAVE_VM_COMPILED),true)
|
|||
ifeq ($(ARCH),amd64)
|
||||
Q3OBJ += $(B)/client/vm_x86_64.o $(B)/client/vm_x86_64_assembler.o
|
||||
endif
|
||||
ifeq ($(ARCH),x64)
|
||||
Q3OBJ += $(B)/client/vm_x86_64.o $(B)/client/vm_x86_64_assembler.o
|
||||
endif
|
||||
ifeq ($(ARCH),ppc)
|
||||
Q3OBJ += $(B)/client/vm_powerpc.o $(B)/client/vm_powerpc_asm.o
|
||||
endif
|
||||
|
@ -1718,6 +1719,9 @@ ifeq ($(HAVE_VM_COMPILED),true)
|
|||
ifeq ($(ARCH),amd64)
|
||||
Q3DOBJ += $(B)/ded/vm_x86_64.o $(B)/ded/vm_x86_64_assembler.o
|
||||
endif
|
||||
ifeq ($(ARCH),x64)
|
||||
Q3DOBJ += $(B)/ded/vm_x86_64.o $(B)/ded/vm_x86_64_assembler.o
|
||||
endif
|
||||
ifeq ($(ARCH),ppc)
|
||||
Q3DOBJ += $(B)/ded/vm_powerpc.o $(B)/ded/vm_powerpc_asm.o
|
||||
endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue