diff options
author | Andreas Rumpf <andreas@andreas-desktop> | 2009-11-26 00:32:07 +0100 |
---|---|---|
committer | Andreas Rumpf <andreas@andreas-desktop> | 2009-11-26 00:32:07 +0100 |
commit | 196ef92c86d8b8971d4b316f7c18e404842c4b9b (patch) | |
tree | 03506a36422f8ae7543b492978067263beea8502 /data/basicopt.txt | |
parent | 3710309d39f65718ab5990d53a977acb241432a9 (diff) | |
download | Nim-196ef92c86d8b8971d4b316f7c18e404842c4b9b.tar.gz |
bug concerning constant evaluation fixed
Diffstat (limited to 'data/basicopt.txt')
-rwxr-xr-x | data/basicopt.txt | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/data/basicopt.txt b/data/basicopt.txt index af3f541ad..136c058c0 100755 --- a/data/basicopt.txt +++ b/data/basicopt.txt @@ -2,7 +2,7 @@ Usage:: nimrod command [options] inputfile [arguments] Command:: compile, c compile project with default code generator (C) - compile_to_c, cc compile project with C code generator + compileToC, cc compile project with C code generator doc generate the documentation for inputfile rst2html converts a reStructuredText file to HTML rst2tex converts a reStructuredText file to TeX @@ -13,19 +13,19 @@ Options: -o, --out:FILE set the output filename -d, --define:SYMBOL define a conditional symbol -u, --undef:SYMBOL undefine a conditional symbol - -f, --force_build force rebuilding of all modules - --symbol_files:on|off use symbol files to speed up compilation (buggy!) - --stack_trace:on|off code generation for stack trace ON|OFF - --line_trace:on|off code generation for line trace ON|OFF + -f, --forceBuild force rebuilding of all modules + --symbolFiles:on|off use symbol files to speed up compilation (buggy!) + --stackTrace:on|off code generation for stack trace ON|OFF + --lineTrace:on|off code generation for line trace ON|OFF --debugger:on|off turn Embedded Nimrod Debugger ON|OFF -x, --checks:on|off code generation for all runtime checks ON|OFF - --obj_checks:on|off code generation for obj conversion checks ON|OFF - --field_checks:on|off code generation for case variant fields ON|OFF - --range_checks:on|off code generation for range checks ON|OFF - --bound_checks:on|off code generation for bound checks ON|OFF - --overflow_checks:on|off code generation for over-/underflow checks ON|OFF + --objChecks:on|off code generation for obj conversion checks ON|OFF + --fieldChecks:on|off code generation for case variant fields ON|OFF + --rangeChecks:on|off code generation for range checks ON|OFF + --boundChecks:on|off code generation for bound checks ON|OFF + --overflowChecks:on|off code generation for over-/underflow checks ON|OFF -a, --assertions:on|off code generation for assertions ON|OFF - --dead_code_elim:on|off whole program dead code elimination ON|OFF + --deadCodeElim:on|off whole program dead code elimination ON|OFF --opt:none|speed|size optimize not at all or for speed|size --app:console|gui|lib generate a console|GUI application|dynamic library -r, --run run the compiled program with given arguments |