Blame view

RIOT/boards/qemu-i386/Makefile.include 682 Bytes
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  USEMODULE += x86-multiboot-common
  
  CFLAGS += -march=i686 -mtune=i686
  
  TERMPROG = exec $(RIOTBOARD)/qemu-i386/dist/term.py qemu-system-i386 $(BINDIRBASE) $(HEXFILE)
  
  FLASHER = true
  
  DEBUGGER = $(TERMPROG)
  
  all:
  
  debug-kdbg: DEBUGGER_FLAGS="kdbg -r :1234 -- $(ELFFILE)"
  debug-kdbg: debug
  
  debug-ddd: DEBUGGER_FLAGS="ddd --eval-command='target remote :1234' $(ELFFILE)"
  debug-ddd: debug
  
  debug-tui: DEBUGGER_FLAGS="x-terminal-emulator -e gdb -ex 'target remote :1234' -tui --args $(ELFFILE)"
  debug-tui: debug
  
  debug-gdb: debug
  DEBUGGER_FLAGS = "x-terminal-emulator -e gdb -ex 'target remote :1234' --args $(ELFFILE)"
  
  debug:
  
  include $(RIOTBOARD)/x86-multiboot-common/Makefile.include