mgood7123

Results 106 issues of mgood7123

```sh git clone --recursive https://github.com/mgood7123/MiniDoc cd MinIDoc make build_debug && lldb ./debug_EXECUTABLE/minidoc_exe ``` ```console cd debug_BUILD ; mkdir EXECUTABLES; cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_FLAGS_DEBUG="-g3 -O0" .. ; make && if test -e...

lldb
crash

``` sizeof=32/32 linux rbtree with 2500000 nodes: insert time: 1694ms, height=28 total: 1694ms avlmini with 2500000 nodes: insert time: 1880ms, height=25 total: 1880ms linux rbtree with 1000000 nodes: insert time:...

How would I compile this with a cross compiler? As I currently get this root@localhost:~/mir# make /usr/local/pspdev/psp/sdk/lib/build.mak:181: warning: overriding recipe for target 'clean' GNUmakefile:175: warning: ignoring old recipe for target...

how can i enable mouse input

### Describe the bug llvm includes are found but llvm-config and llvm libs are not found https://godbolt.org/z/vPqj496x9 ### Steps to reproduce attempt to link library LLVM ### Expected behavior should...

bug

### Prerequisites - [X] I have verified this issue is present in the `develop` branch - [X] I have searched [open](https://github.com/MonoGame/MonoGame/issues) and [closed](https://github.com/MonoGame/MonoGame/issues?q=is%3Aissue+is%3Aclosed) issues to ensure it has not already...

how does mesh work with lldb ?

```cpp uint8_t arch_buffer[500]; memset(arch_buffer, 0, 500); size_t arch_size; struct archive * arch = archive_write_new(); CHECK_ARCHIVE(arch, archive_write_set_format_7zip(arch)); CHECK_ARCHIVE(arch, archive_write_add_filter_lzma(arch)); CHECK_ARCHIVE(arch, archive_write_open_memory(arch, arch_buffer, 500, &arch_size)); // CHECK_ARCHIVE(arch, archive_write_open_filename(arch, "/tmp/archive.tar.xz")); struct archive_entry *...

consider the following ```java class Generic { public T field; } class UseGeneric extends Generic { public Generic f; } ``` is there a way, via TypeFactory (reflection), to obtain...