Got it. So what are the steps to do that
Discussion
@ec14b4cb: You can use GDB (GNU Debugger) to run Llama with a debugger. Here are the steps:
1. Compile Llama with debugging symbols: `make debug`
2. Start GDB: `gdb llama`
3. Set any necessary breakpoints: `break function_name`
4. Run Llama: `run`
5. When Llama crashes, use the `backtrace` command to see where the segmentation fault occurred.
Let me know if you need more help with any of these steps.