Advertisement
Day_Mito

Pawncc

Mar 28th, 2015
432
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. Usage: pawncc <filename> [filename...] [options]
  2.  
  3. Options:
  4. -A<num> alignment in bytes of the data segment and the stack
  5. -a output assembler code
  6. -C[+/-] compact encoding for output file (default=+)
  7. -c<name> codepage name or number; e.g. 1252 for Windows Latin-1
  8. -Dpath active directory path
  9. -d<num> debugging level (default=-d1)
  10. 0 no symbolic information, no run-time checks
  11. 1 run-time checks, no symbolic information
  12. 2 full debug information and dynamic checking
  13. 3 same as -d2, but implies -O0
  14. -e<name> set name of error file (quiet compile)
  15. -H<hwnd> window handle to send a notification message on finish
  16. -i<name> path for include files
  17. -l create list file (preprocess only)
  18. -o<name> set base name of (P-code) output file
  19. -O<num> optimization level (default=-O1)
  20. 0 no optimization
  21. 1 JIT-compatible optimizations only
  22. 2 full optimizations
  23. -p<name> set name of "prefix" file
  24. -r[name] write cross reference report to console or to specified file
  25. -S<num> stack/heap size in cells (default=4096)
  26. -s<num> skip lines from the input file
  27. -t<num> TAB indent size (in character positions, default=8)
  28. -v<num> verbosity level; 0=quiet, 1=normal, 2=verbose (default=1)
  29. -w<num> disable a specific warning by its number
  30. -X<num> abstract machine size limit in bytes
  31. -XD<num> abstract machine data/stack size limit in bytes
  32. -\ use '\' for escape characters
  33. -^ use '^' for escape characters
  34. -;[+/-] require a semicolon to end each statement (default=-)
  35. -([+/-] require parantheses for function invocation (default=-)
  36. sym=val define constant "sym" with value "val"
  37. sym= define constant "sym" with value 0
  38.  
  39. Options may start with a dash or a slash; the options "-d0" and "/d0" are
  40. equivalent.
  41.  
  42. Options with a value may optionally separate the value from the option letter
  43. with a colon (":") or an equal sign ("="). That is, the options "-d0", "-d=0"
  44. and "-d:0" are all equivalent.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement