mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Remove old x86_64 JIT compiler
This commit is contained in:
parent
b009528e6a
commit
78132cf829
3 changed files with 12 additions and 2609 deletions
64
Makefile
64
Makefile
|
@ -213,10 +213,6 @@ ifndef DEBUG_CFLAGS
|
|||
DEBUG_CFLAGS=-g -O0
|
||||
endif
|
||||
|
||||
ifndef USE_OLD_VM64
|
||||
USE_OLD_VM64=0
|
||||
endif
|
||||
|
||||
#############################################################################
|
||||
|
||||
BD=$(BUILD_DIR)/debug-$(PLATFORM)-$(ARCH)
|
||||
|
@ -1909,34 +1905,16 @@ ifeq ($(HAVE_VM_COMPILED),true)
|
|||
$(B)/client/vm_x86.o
|
||||
endif
|
||||
ifeq ($(ARCH),x86_64)
|
||||
ifeq ($(USE_OLD_VM64),1)
|
||||
Q3OBJ += \
|
||||
$(B)/client/vm_x86_64.o \
|
||||
$(B)/client/vm_x86_64_assembler.o
|
||||
else
|
||||
Q3OBJ += \
|
||||
$(B)/client/vm_x86.o
|
||||
endif
|
||||
Q3OBJ += \
|
||||
$(B)/client/vm_x86.o
|
||||
endif
|
||||
ifeq ($(ARCH),amd64)
|
||||
ifeq ($(USE_OLD_VM64),1)
|
||||
Q3OBJ += \
|
||||
$(B)/client/vm_x86_64.o \
|
||||
$(B)/client/vm_x86_64_assembler.o
|
||||
else
|
||||
Q3OBJ += \
|
||||
$(B)/client/vm_x86.o
|
||||
endif
|
||||
Q3OBJ += \
|
||||
$(B)/client/vm_x86.o
|
||||
endif
|
||||
ifeq ($(ARCH),x64)
|
||||
ifeq ($(USE_OLD_VM64),1)
|
||||
Q3OBJ += \
|
||||
$(B)/client/vm_x86_64.o \
|
||||
$(B)/client/vm_x86_64_assembler.o
|
||||
else
|
||||
Q3OBJ += \
|
||||
$(B)/client/vm_x86.o
|
||||
endif
|
||||
Q3OBJ += \
|
||||
$(B)/client/vm_x86.o
|
||||
endif
|
||||
ifeq ($(ARCH),ppc)
|
||||
Q3OBJ += $(B)/client/vm_powerpc.o $(B)/client/vm_powerpc_asm.o
|
||||
|
@ -2130,34 +2108,16 @@ ifeq ($(HAVE_VM_COMPILED),true)
|
|||
$(B)/ded/vm_x86.o
|
||||
endif
|
||||
ifeq ($(ARCH),x86_64)
|
||||
ifeq ($(USE_OLD_VM64),1)
|
||||
Q3DOBJ += \
|
||||
$(B)/ded/vm_x86_64.o \
|
||||
$(B)/ded/vm_x86_64_assembler.o
|
||||
else
|
||||
Q3DOBJ += \
|
||||
$(B)/ded/vm_x86.o
|
||||
endif
|
||||
Q3DOBJ += \
|
||||
$(B)/ded/vm_x86.o
|
||||
endif
|
||||
ifeq ($(ARCH),amd64)
|
||||
ifeq ($(USE_OLD_VM64),1)
|
||||
Q3DOBJ += \
|
||||
$(B)/ded/vm_x86_64.o \
|
||||
$(B)/ded/vm_x86_64_assembler.o
|
||||
else
|
||||
Q3DOBJ += \
|
||||
$(B)/ded/vm_x86.o
|
||||
endif
|
||||
Q3DOBJ += \
|
||||
$(B)/ded/vm_x86.o
|
||||
endif
|
||||
ifeq ($(ARCH),x64)
|
||||
ifeq ($(USE_OLD_VM64),1)
|
||||
Q3DOBJ += \
|
||||
$(B)/ded/vm_x86_64.o \
|
||||
$(B)/ded/vm_x86_64_assembler.o
|
||||
else
|
||||
Q3DOBJ += \
|
||||
$(B)/ded/vm_x86.o
|
||||
endif
|
||||
Q3DOBJ += \
|
||||
$(B)/ded/vm_x86.o
|
||||
endif
|
||||
ifeq ($(ARCH),ppc)
|
||||
Q3DOBJ += $(B)/ded/vm_powerpc.o $(B)/ded/vm_powerpc_asm.o
|
||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue