aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/stacktrace.c
AgeCommit message (Collapse)Author
2025-12-31Move print.c/h back into stdlibBruce Hill
2025-12-24Shuffle dependencies around so header files aren't needed after tomo hasBruce Hill
been compiled
2025-12-21Don't embed tomo version/path information at compile time, instead inferBruce Hill
it at runtime
2025-11-29Overhaul to versioning system (paths go tov2025-11-29Bruce Hill
`/tomo@TOMOVERSION/lib@LIBVERSION` instead of using underscores. Tomo versioning now uses date-based versions.
2025-10-12More code cleanupsBruce Hill
2025-09-01Fixes for local-tomo so that it *actually* uses local header files,Bruce Hill
which don't need to be installed anymore.
2025-09-01Change module install directory to PREFIX/lib/tomo_vX.Y/*Bruce Hill
2025-08-25Update file header commentsBruce Hill
2025-08-24Remove vim modelinesBruce Hill
2025-08-23Autoformat everything with clang-formatBruce Hill
2025-08-23Lots of cleanupsBruce Hill
2025-08-23Fix some LSP issues, mostly unused importsBruce Hill
2025-05-11Add new system for tracking versions.Bruce Hill
2025-05-05Fix some permission stuff to make it more seamless to install toBruce Hill
directories the user doesn't own (e.g. /usr/local, owned by root)
2025-05-02Improved stack trace function namesBruce Hill
2025-05-02Bugfix for stack tracesBruce Hill
2025-04-27Update stdlib to use `print` instead of `printf` in all cases. ThisBruce Hill
means bringing in fpconv to do float-to-string conversion and a few updates to integer and number methods for string formatting.
2025-04-15Add configuration script to choose install paths and default C compilerBruce Hill
and bake those into the compiled Tomo code
2025-04-14Print full library pathBruce Hill
2025-04-14Slightly more robust filtering of stack trace from main() onwardsBruce Hill
2025-04-14Reworking of stack traces (back to using addr2line) for compatibilityBruce Hill
and improved output quality
2025-04-12Replace addr2line with libbacktrace to get improved stack tracesBruce Hill