add support for building a cross-gdb for ARM... This isn't hooked up

to xdev yet as I don't know how to make it work properly...  It also
isn't heavily tested...

Reviewed by:	silence on -arm
This commit is contained in:
John-Mark Gurney 2014-02-12 02:08:42 +00:00
parent 85e5839202
commit d5ad10055b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=261788
3 changed files with 17 additions and 1 deletions

View File

@ -50,7 +50,11 @@ __FBSDID("$FreeBSD$");
CORE_ADDR
kgdb_trgt_core_pcb(u_int cpuid)
{
#ifndef CROSS_DEBUGGER
return (kgdb_trgt_stop_pcb(cpuid, sizeof(struct pcb)));
#else
return -1;
#endif
}
void

View File

@ -42,11 +42,15 @@ __FBSDID("$FreeBSD$");
#include <sys/elf32.h>
#include <sys/mman.h>
#ifndef CROSS_LIBKVM
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/pmap.h>
#include <machine/pmap.h>
#else
#include "../../sys/arm/include/pte.h"
#include "../../sys/arm/include/vmparam.h"
#endif
#include <db.h>
#include <limits.h>

View File

@ -34,7 +34,9 @@ __FBSDID("$FreeBSD$");
*/
#include <sys/param.h>
#ifndef CROSS_LIBKVM
#include <sys/user.h>
#endif
#include <sys/proc.h>
#include <sys/stat.h>
#include <sys/mman.h>
@ -45,12 +47,18 @@ __FBSDID("$FreeBSD$");
#include <nlist.h>
#include <kvm.h>
#ifndef CROSS_LIBKVM
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <machine/elf.h>
#include <machine/cpufunc.h>
#include <machine/minidump.h>
#else
#include "../../sys/arm/include/pte.h"
#include "../../sys/arm/include/vmparam.h"
#include "../../sys/arm/include/minidump.h"
#endif
#include <limits.h>