Thassilo Schulze
Thassilo Schulze
Are there any plans to build a tool to cross-compile markdown documents into `.typ` files? This would be enormously helpful to transition from a markdown based note-taking workflow to typst....
When I run `clang linenoise.c -c -pedantic-errors` I get the following error messages: ``` linenoise.c:622:31: error: must specify at least one argument for '...' parameter of variadic macro [-Werror,-Wgnu-zero-variadic-macro-arguments] lndebug("clear+up");...
- [ ] `is_dyn_exec` in `src/info.c` ought not to return `false` if `info` is `NULL`. Just crash, otherwise totally wrong data is passed around. - [ ] `parse_num` (`src/debugger.c`) will...
A few notes on implementing potential roadmap features. - It would be cool if inlined function were allowed. As a place to start, there is a short mention of inlining...
The current approach to finding the DIE that contains runtime information about a variable (by the variable's name) consists of two steps: 1. We continually narrow the range of potential...
A lot of DWARF debug information is encoded as programs for a stack-based VM. Without turning on optimizations, only very few of the operations that exist for this VM are...
If the child process ("tracee") exists, the REPL continues and signals an error every time one tries to step through the program (because the child process cannot step anywhere). Instead...
At this point in time, many unit (and some integration) tests rely on checking for specific addresses to validate the output of different parts of the debugger. This is problematic...
This PR introduces `ukconsole`, a library that exposes a generic interface for console devices. This is groundwork for adding the gdb stub to Unikraft. ### Prerequisite checklist - [x] Read...