mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
Makefile: Enable new sparc JIT on Linux.
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
844ee46627
commit
2864898147
1 changed files with 7 additions and 0 deletions
7
Makefile
7
Makefile
|
@ -283,6 +283,7 @@ ifeq ($(PLATFORM),linux)
|
|||
endif
|
||||
ifeq ($(ARCH),sparc)
|
||||
OPTIMIZE += -mtune=ultrasparc3 -mv8plus
|
||||
HAVE_VM_COMPILED=true
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
@ -1447,6 +1448,9 @@ ifeq ($(HAVE_VM_COMPILED),true)
|
|||
ifeq ($(ARCH),ppc64)
|
||||
Q3OBJ += $(B)/client/vm_powerpc.o $(B)/client/vm_powerpc_asm.o
|
||||
endif
|
||||
ifeq ($(ARCH),sparc)
|
||||
Q3OBJ += $(B)/client/vm_sparc.o
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(PLATFORM),mingw32)
|
||||
|
@ -1593,6 +1597,9 @@ ifeq ($(HAVE_VM_COMPILED),true)
|
|||
ifeq ($(ARCH),ppc64)
|
||||
Q3DOBJ += $(B)/ded/vm_powerpc.o $(B)/ded/vm_powerpc_asm.o
|
||||
endif
|
||||
ifeq ($(ARCH),sparc)
|
||||
Q3DOBJ += $(B)/ded/vm_sparc.o
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(PLATFORM),mingw32)
|
||||
|
|
Loading…
Reference in a new issue