summary refs log tree commit diff stats
path: root/nimpretty
Commit message (Expand)AuthorAgeFilesLines
* fix nimpretty warning (#13700)Jasper Jenkins2020-03-201-2/+1
* Nimpretty Fix negative indent breaks code (#13580)Juan Carlos2020-03-041-2/+2
* make case-object transitions explicit, make unknownLineInfo a const, replace ...Jasper Jenkins2020-01-171-1/+0
* Fix spellings (#12277) [backport]Federico Ceratto2019-09-272-2/+2
* nimpretty: fix #11937 (wrong indentation)narimiran2019-08-193-1/+77
* cosmetic improvementsnarimiran2019-08-191-2/+1
* nimpretty: fixes #11616Araq2019-07-182-0/+72
* nimpretty: fixes #11699Araq2019-07-182-0/+55
* [refactoring] nimprettyAraq2019-07-181-2/+2
* nimpretty: implement a --maxLineLen command line optionAraq2019-07-121-1/+6
* nimpretty: fix #11700, no extra newlines (#11714)Miran2019-07-122-0/+40
* minor style changesAraq2019-07-111-1/+1
* nimpretty: more comment indentation fixesnarimiran2019-07-092-0/+26
* nimpretty: more improvementsAraq2019-07-092-0/+90
* nimpretty: yet another improvementAraq2019-07-092-0/+20
* nimpretty: don't introduce extra spaces after a colon or a comma (#11672)Miran2019-07-072-130/+136
* nimpretty: improved detection of commas and semicolons (#11661)Miran2019-07-062-0/+4
* nimpretty: don't touch formatted multiline comments (#11663)Miran2019-07-052-4/+60
* nimpretty: relax line length rules when dealing with (inline) comments (#11657)Miran2019-07-053-5/+29
* [bugfix] fix wrong nimpretty unidents, refs #11616 (#11645)Miran2019-07-032-0/+25
* [bugfix] nimpretty indents multiline comments correctly (#11607)Miran2019-07-022-0/+38
* nimpretty: bugfix [bugfix]Araq2019-06-282-0/+78
* [bugfix] fix #11469, new rules for a newline in nimpretty (#11512)Miran2019-06-264-18/+36
* [bugfix] nimpretty: better alignment; fixes #11467Araq2019-06-142-0/+350
* [bugfix] nimpretty: fixes #11470Araq2019-06-132-0/+30
* [bugfix] nimpretty: fixes #11468Araq2019-06-132-0/+16
* [bugfix] fix nimpretty for absolute paths (#11480)Jasper Jenkins2019-06-121-1/+3
* nimpretty: smart tabs support, fixes #9399 [bugfix]Andreas Rumpf2019-06-104-14/+35
* nimpretty: fixes #10156 [bugfix]Andreas Rumpf2019-06-082-0/+98
* nimpretty: closes #10159 [bugfix]Araq2019-06-072-0/+24
* nimpretty: fixes #9505 [bugfix]Araq2019-06-072-0/+48
* nimpretty: fixes #10177 [bugfix]Araq2019-06-072-0/+18
* nimpretty: fixes #10295Araq2019-06-072-0/+19
* cleanup nimpretty's configAndreas Rumpf2019-06-061-1/+1
* make fullpaths the default in error messages and stack traces for mor… (#11...Andreas Rumpf2019-06-051-0/+1
* fixes #9811 (#10961)tofu2019-04-041-1/+2
* fixes #10200 (#10950)tofu2019-04-042-0/+12
* Initial version of the hot-code reloading support for native targets (#10729)zah2019-02-261-1/+1
* [nimpretty] fix #10211; fix #10199 (#10212)Timothee Cour2019-01-081-8/+16
* nimpretty: explicit --indent option; fixes #9502; refs #9510 [backport]Andreas Rumpf2018-11-111-4/+16
* nimpretty: fixes #9673 [backport]Andreas Rumpf2018-11-112-0/+6
* nimpretty tester: strengthen the comparison, do not use stripAndreas Rumpf2018-10-261-1/+1
* nimpretty: fixes #9506Andreas Rumpf2018-10-263-1/+15
* nimpretty: fixes #9500Araq2018-10-252-0/+46
* nimpretty: fixes #9504Araq2018-10-252-0/+10
* nimpretty: closes #9484Araq2018-10-242-0/+18
* nimpretty: test for idempotence; fixes #9483Araq2018-10-243-6/+24
* nimpretty: fixes #8078Araq2018-10-242-0/+16
* nimpretty: fixes #9398Araq2018-10-243-1/+14
* closes #9400Araq2018-10-232-0/+10
class="p">(TCCState *s, int output_type); #define TCC_OUTPUT_FORMAT_ELF 0 /* default output format: ELF */ #define TCC_OUTPUT_FORMAT_BINARY 1 /* binary image output */ #define TCC_OUTPUT_FORMAT_COFF 2 /* COFF */ /* equivalent to -Lpath option */ LIBTCCAPI int tcc_add_library_path(TCCState *s, const char *pathname); /* the library name is the same as the argument of the '-l' option */ LIBTCCAPI int tcc_add_library(TCCState *s, const char *libraryname); /* add a symbol to the compiled program */ LIBTCCAPI int tcc_add_symbol(TCCState *s, const char *name, void *val); /* output an executable, library or object file. DO NOT call tcc_relocate() before. */ LIBTCCAPI int tcc_output_file(TCCState *s, const char *filename); /* link and run main() function and return its value. DO NOT call tcc_relocate() before. */ LIBTCCAPI int tcc_run(TCCState *s, int argc, char **argv); /* copy code into memory passed in by the caller and do all relocations (needed before using tcc_get_symbol()). returns -1 on error and required size if ptr is NULL */ LIBTCCAPI int tcc_relocate(TCCState *s1, void *ptr); /* return symbol value or NULL if not found */ LIBTCCAPI void *tcc_get_symbol(TCCState *s, const char *name); /* set CONFIG_TCCDIR at runtime */ LIBTCCAPI void tcc_set_lib_path(TCCState *s, const char *path); #ifdef __cplusplus } #endif #endif