
On macOS 10.14 Apple changed the command line tools so that system headers now need to be manually installed. Instead of adding one extra install step to the install procedure add a build tag to allow compilation of delve without the native backend on macOS. By default (i.e. when using `go get`) this is how delve will be compiled on macOS, the make script is changed to enable compiling the native backend if the required dependencies have been installed. Insure that both configuration still build correctly on Travis CI and change the documentation to describe how to compile the native backend and that it isn't normally needed. Fixes #1359
57 lines
1.0 KiB
C
57 lines
1.0 KiB
C
//+build darwin,macnative
|
|
|
|
#include <sys/types.h>
|
|
#include <libproc.h>
|
|
#include <mach/mach.h>
|
|
#include <mach/mach_vm.h>
|
|
#include "mach_exc.h"
|
|
#include "exc.h"
|
|
|
|
#ifdef mig_external
|
|
mig_external
|
|
#else
|
|
extern
|
|
#endif /* mig_external */
|
|
boolean_t exc_server(
|
|
mach_msg_header_t *InHeadP,
|
|
mach_msg_header_t *OutHeadP);
|
|
|
|
#ifdef mig_external
|
|
mig_external
|
|
#else
|
|
extern
|
|
#endif /* mig_external */
|
|
boolean_t mach_exc_server(
|
|
mach_msg_header_t *InHeadP,
|
|
mach_msg_header_t *OutHeadP);
|
|
|
|
kern_return_t
|
|
acquire_mach_task(int, task_t*, mach_port_t*, mach_port_t*, mach_port_t*);
|
|
|
|
char *
|
|
find_executable(int pid);
|
|
|
|
kern_return_t
|
|
get_threads(task_t task, void *data,int limit);
|
|
|
|
int
|
|
thread_count(task_t task);
|
|
|
|
mach_port_t
|
|
mach_port_wait(mach_port_t, task_t*, int);
|
|
|
|
kern_return_t
|
|
mach_send_reply(mach_msg_header_t);
|
|
|
|
kern_return_t
|
|
raise_exception(mach_port_t, mach_port_t, mach_port_t, exception_type_t);
|
|
|
|
kern_return_t
|
|
reset_exception_ports(task_t task, mach_port_t *exception_port, mach_port_t *notification_port);
|
|
|
|
task_t
|
|
get_task_for_pid(int pid);
|
|
|
|
int
|
|
task_is_valid(task_t task);
|