aboutsummaryrefslogtreecommitdiff
path: root/src/tomo.c
AgeCommit message (Collapse)Author
2025-07-11Use _Decimal64 instead of mpdecimalBruce Hill
2025-07-10Merge branch 'main' into decimalsBruce Hill
2025-06-25Clean up #include parsing so it works correctly with commentsBruce Hill
2025-06-25Add fix for `.include` or `#included` files in assembly failing to triggerBruce Hill
recompilation
2025-06-25Trigger recompilation when downstream #includes for C files are updated.Bruce Hill
2025-06-24Correctly detect changes to `use`d C/header files and triggerBruce Hill
recompilation
2025-06-22Add decimal numbersBruce Hill
2025-05-25Force recompilation when modules.ini changesBruce Hill
2025-05-20Add more advanced configuration options to modules.ini and supportBruce Hill
automatically downloading and installing from it.
2025-05-19Add --prefix flagBruce Hill
2025-05-17Add --version flag for executables and more documentation.Bruce Hill
2025-05-17Add `modules.ini` file for import aliases, as well as default aliasesBruce Hill
for the built-in modules.
2025-05-11Add new system for tracking versions.Bruce Hill
2025-05-09Bugfix for installing libraries through `.` or `..`Bruce Hill
2025-05-06Discard resultBruce Hill
2025-05-06Check return valuesBruce Hill
2025-05-06Deprecate TOMO_PREFIX/share/tomo/lib and TOMO_PREFIX/share/tomo/modules.Bruce Hill
Instead just add lib's directory to rpath
2025-05-05Get rid of single-file headers for libraries and just include each .tmBruce Hill
file's .build/*.tm.h file individually.
2025-05-05Show codegen even if it wasn't regeneratedBruce 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-02Rename parse_and_run functionBruce Hill
2025-05-02Deprecate --c-compiler flag, since builds compiled with differentBruce Hill
compilers won't play nice anyways
2025-05-02Initialize random seed for tomo compiler itselfBruce Hill
2025-05-01Remove POSIX_C_SOURCE flagBruce Hill
2025-05-01Fix compiler flagBruce Hill
2025-05-01BugfixBruce Hill
2025-05-01Don't check result of debugedit commandBruce Hill
2025-05-01Show failed commandBruce Hill
2025-05-01Move importsBruce Hill
2025-04-30Update compiler to use randomly generated unique-per-file symbolBruce Hill
suffixes instead of needing to rename symbols with objcopy
2025-04-30Use namespace prefix function when appropriateBruce Hill
2025-04-29Check return values for system callsBruce Hill
2025-04-28Bugfix for compilation logic using setsBruce Hill
2025-04-28Remove remaining printf referencesBruce Hill
2025-04-28Fix potential issue causing install to failBruce 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-26Minor tweaksBruce Hill
2025-04-26Install libs as-you-go instead of after all of them are built (in caseBruce Hill
of serial dependencies)
2025-04-26Improve library compilation and installation to be more lazy and moreBruce Hill
correct without changing directories.
2025-04-26Be even more aggressive about lazy compilation. No need to recompile theBruce Hill
main() wrapper file if the component object files haven't changed. Also, no need to rectranspile .h/.c files just because the C compiler or optimization flags changed.
2025-04-26Rebuild files when build configuration (e.g. optimization level or CBruce Hill
compiler) changes
2025-04-26Check that import is a valid fileBruce Hill
2025-04-26Add `--version` flag to show current compiler version's git commit dateBruce Hill
and hash
2025-04-25Speculative fix for Mac: use llvm-objcopy instead of patchelf for Mach-OBruce Hill
shared library files
2025-04-21Switch from XML to s-expressions and add --parse flag for printing themBruce Hill
2025-04-21Fix for librariesBruce Hill
2025-04-21Deprecate REPLBruce Hill
2025-04-21Library renaming should be slightly more generalBruce Hill
2025-04-21Bugfix issue with renaming symbols for librariesBruce Hill
2025-04-16Bugfix for top-level variables in librariesBruce Hill