diff options
author | Andreas Rumpf <andreas@andi> | 2008-06-22 16:14:11 +0200 |
---|---|---|
committer | Andreas Rumpf <andreas@andi> | 2008-06-22 16:14:11 +0200 |
commit | 405b86068e6a3d39970b9129ceec0a9108464b28 (patch) | |
tree | c0449946f54baae6ea88baf453157ddd7faa8f86 /data/basicopt.txt | |
download | Nim-405b86068e6a3d39970b9129ceec0a9108464b28.tar.gz |
Initial import
Diffstat (limited to 'data/basicopt.txt')
-rwxr-xr-x | data/basicopt.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/data/basicopt.txt b/data/basicopt.txt new file mode 100755 index 000000000..a6f6ffee5 --- /dev/null +++ b/data/basicopt.txt @@ -0,0 +1,29 @@ +Usage:: + nimrod command [options] inputfile [arguments] +Command:: + compile compile project with default code generator (C) + compile_to_c compile project with C code generator + compile_to_cpp compile project with C++ code generator + doc generate the documentation for inputfile; + with --run switch opens it with $BROWSER +Arguments: + arguments are passed to the program being run (if --run option is selected) +Options: + -p, --path:PATH add path to search paths + -o, --out:FILE set the output filename + -d, --define:SYMBOL define a conditional symbol + -u, --undef:SYMBOL undefine a conditional symbol + -b, --force_build force rebuilding of all modules + --stack_trace:on|off code generation for stack trace ON|OFF + --line_trace: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 + --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 + -a, --assertions:on|off code generation for assertions ON|OFF + --opt:none|speed|size optimize not at all or for speed|size + --app:console|gui|lib generate a console|GUI application or a shared lib + -r, --run run the compiled program with given arguments + --advanced show advanced command line switches + -h, --help show this help |