2014-08-17 16:12:37 +00:00
|
|
|
GDB_CONTRIB_DIR = $(call select_from_ports,gdb)/src/noux-pkg/gdb
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
INC_DIR += $(REP_DIR)/src/lib/gdbserver_libc_support \
|
|
|
|
$(REP_DIR)/src/lib/gdbserver_platform \
|
|
|
|
$(REP_DIR)/src/app/gdb_monitor \
|
|
|
|
$(GDB_CONTRIB_DIR)/include \
|
|
|
|
$(GDB_CONTRIB_DIR)/gdb/common \
|
|
|
|
$(GDB_CONTRIB_DIR)/gdb/gdbserver \
|
|
|
|
$(GDB_CONTRIB_DIR)/gdb/regformats \
|
|
|
|
$(REP_DIR)/src/app/gdb_monitor/gdbserver
|
|
|
|
|
|
|
|
SRC_CC += gdbserver_platform_helper.cc
|
|
|
|
|
|
|
|
LIBS += libc
|
|
|
|
|
2015-03-05 12:13:52 +00:00
|
|
|
# generated files
|
|
|
|
|
|
|
|
REGFORMATS_DIR := $(abspath ${GDB_CONTRIB_DIR}/gdb/regformats)
|
|
|
|
|
|
|
|
reg-arm.c:
|
|
|
|
$(VERBOSE) cd $(dir $@) && $(SHELL) $(REGFORMATS_DIR)/regdat.sh $(REGFORMATS_DIR)/reg-arm.dat $(notdir $@)
|
|
|
|
|
|
|
|
i386.c:
|
|
|
|
$(VERBOSE) cd $(dir $@) && $(SHELL) $(REGFORMATS_DIR)/regdat.sh $(REGFORMATS_DIR)/i386/i386.dat $(notdir $@)
|
|
|
|
|
|
|
|
i386-avx.c:
|
|
|
|
$(VERBOSE) cd $(dir $@) && $(SHELL) $(REGFORMATS_DIR)/regdat.sh $(REGFORMATS_DIR)/i386/i386-avx.dat $(notdir $@)
|
|
|
|
|
2016-03-06 14:25:38 +00:00
|
|
|
amd64.c:
|
|
|
|
$(VERBOSE) cd $(dir $@) && $(SHELL) $(REGFORMATS_DIR)/regdat.sh $(REGFORMATS_DIR)/i386/amd64.dat $(notdir $@)
|
|
|
|
|
|
|
|
amd64-avx.c:
|
|
|
|
$(VERBOSE) cd $(dir $@) && $(SHELL) $(REGFORMATS_DIR)/regdat.sh $(REGFORMATS_DIR)/i386/amd64-avx.dat $(notdir $@)
|
|
|
|
|
2011-12-22 15:19:25 +00:00
|
|
|
vpath %.cc $(REP_DIR)/src/lib/gdbserver_platform
|
|
|
|
vpath %.c $(GDB_CONTRIB_DIR)/gdb/gdbserver
|