mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
57b90e8d75
The main feature for this version upgrade is the use of the instruction emulator (IEM) to speed up execution and less often the slow recompiler. issue #2059
30 lines
960 B
Makefile
30 lines
960 B
Makefile
include $(REP_DIR)/lib/mk/virtualbox5-common.inc
|
|
|
|
RECOMPILER_DIR = $(VIRTUALBOX_DIR)/src/recompiler
|
|
|
|
RECOMPILER_SRC_C = cpu-exec.c cutils.c exec.c host-utils.c tcg-runtime.c \
|
|
translate-all.c VBoxRecompiler.c \
|
|
tcg/tcg-dyngen.c tcg/tcg.c \
|
|
fpu/softfloat-native.c \
|
|
target-i386/helper.c target-i386/op_helper.c \
|
|
target-i386/translate.c
|
|
|
|
SRC_C = $(addprefix recompiler/,$(RECOMPILER_SRC_C))
|
|
|
|
INC_DIR += $(VBOX_DIR)/VMM/include
|
|
INC_DIR += $(RECOMPILER_DIR)/Sun/crt
|
|
INC_DIR += $(RECOMPILER_DIR)/Sun
|
|
INC_DIR += $(RECOMPILER_DIR)/target-i386
|
|
INC_DIR += $(RECOMPILER_DIR)/tcg
|
|
INC_DIR += $(RECOMPILER_DIR)/tcg/i386
|
|
INC_DIR += $(RECOMPILER_DIR)/fpu
|
|
INC_DIR += $(RECOMPILER_DIR)
|
|
|
|
CC_OPT += -DIN_REM_R3 \
|
|
-DREM_INCLUDE_CPU_H -DNEED_CPU_H -DLOG_USE_C99 -D_GNU_SOURCE
|
|
|
|
CC_WARN += -Wno-unused-but-set-variable]
|
|
|
|
vpath %.cpp $(VIRTUALBOX_DIR)/src
|
|
vpath %.c $(VIRTUALBOX_DIR)/src
|