mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
6d5ffa9f8e
There's still some cleanup to do, but everything seems to be working nicely: `make -j` works, `make distcheck` passes. There is probably plenty of bitrot in the package directories (RPM, debian), though. The vc project files have been removed since those versions are way out of date and quakeforge is pretty much dependent on gcc now anyway. Most of the old Makefile.am files are now Makemodule.am. This should allow for new Makefile.am files that allow local building (to be added on an as-needed bases). The current remaining Makefile.am files are for standalone sub-projects.a The installable bins are currently built in the top-level build directory. This may change if the clutter gets to be too much. While this does make a noticeable difference in build times, the main reason for the switch was to take care of the growing dependency issues: now it's possible to build tools for code generation (eg, using qfcc and ruamoko programs for code-gen).
29 lines
1.5 KiB
R
29 lines
1.5 KiB
R
#include "ruamoko/qwaq/debugger/debug.h"
|
|
|
|
void traceon() = #0;
|
|
void traceoff() = #0;
|
|
|
|
void qdb_set_trace (qdb_target_t target, int state) = #0;
|
|
int qdb_set_breakpoint (qdb_target_t target, unsigned staddr) = #0;
|
|
int qdb_clear_breakpoint (qdb_target_t target, unsigned staddr) = #0;
|
|
int qdb_set_watchpoint (qdb_target_t target, unsigned offset) = #0;
|
|
int qdb_clear_watchpoint (qdb_target_t target) = #0;
|
|
int qdb_continue (qdb_target_t target) = #0;
|
|
qdb_state_t qdb_get_state (qdb_target_t target) = #0;
|
|
int qdb_get_stack_depth (qdb_target_t target) = #0;
|
|
qdb_stack_t *qdb_get_stack (qdb_target_t target) = #0;
|
|
int qdb_get_event (qdb_target_t target, qdb_event_t *event) = #0;
|
|
int qdb_get_data (qdb_target_t target, unsigned src, unsigned len,
|
|
void *dst) = #0;
|
|
string qdb_get_string (qdb_target_t target, unsigned str) = #0;
|
|
string qdb_get_string (qdb_target_t target, string str) = #0;
|
|
string qdb_get_file_path (qdb_target_t target, string file) = #0;
|
|
qdb_def_t qdb_find_global (qdb_target_t target, string name) = #0;
|
|
qdb_def_t qdb_find_field (qdb_target_t target, string name) = #0;
|
|
qdb_function_t *qdb_find_function (qdb_target_t target, string name) = #0;
|
|
qdb_function_t *qdb_get_function (qdb_target_t target, unsigned fnum) = #0;
|
|
qdb_auxfunction_t *qdb_find_auxfunction (qdb_target_t target,
|
|
string name) = #0;
|
|
qdb_auxfunction_t *qdb_get_auxfunction (qdb_target_t target,
|
|
unsigned fnum) = #0;
|
|
qdb_def_t *qdb_get_local_defs (qdb_target_t target, unsigned fnum) = #0;
|