Advertisement
Guest User

Untitled

a guest
Dec 18th, 2016
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 0
  1. pi@raspberrypi:~/Code/hello $ ~/.local/bin/hello-exe +RTS -N
  2. hello-exe: unknown RTS option: -N
  3. hello-exe:
  4. hello-exe: Usage: <prog> <args> [+RTS <rtsopts> | -RTS <args>] ... --RTS <args>
  5. hello-exe:
  6. hello-exe: +RTS Indicates run time system options follow
  7. hello-exe: -RTS Indicates program arguments follow
  8. hello-exe: --RTS Indicates that ALL subsequent arguments will be given to the
  9. hello-exe: program (including any of these RTS flags)
  10. hello-exe:
  11. hello-exe: The following run time system options are available:
  12. hello-exe:
  13. hello-exe: -? Prints this message and exits; the program is not executed
  14. hello-exe: --info Print information about the RTS used by this program
  15. hello-exe:
  16. hello-exe: -K<size> Sets the maximum stack size (default: 80% of the heap)
  17. hello-exe: Egs: -K32k -K512k -K8M
  18. hello-exe: -ki<size> Sets the initial thread stack size (default 1k) Egs: -ki4k -ki2m
  19. hello-exe: -kc<size> Sets the stack chunk size (default 32k)
  20. hello-exe: -kb<size> Sets the stack chunk buffer size (default 1k)
  21. hello-exe:
  22. hello-exe: -A<size> Sets the minimum allocation area size (default 512k) Egs: -A1m -A10k
  23. hello-exe: -n<size> Allocation area chunk size (0 = disabled, default: 0)
  24. hello-exe: -O<size> Sets the minimum size of the old generation (default 1M)
  25. hello-exe: -M<size> Sets the maximum heap size (default unlimited) Egs: -M256k -M1G
  26. hello-exe: -H<size> Sets the minimum heap size (default 0M) Egs: -H24m -H1G
  27. hello-exe: -m<n> Minimum % of heap which must be available (default 3%)
  28. hello-exe: -G<n> Number of generations (default: 2)
  29. hello-exe: -c<n> Use in-place compaction instead of copying in the oldest generation
  30. hello-exe: when live data is at least <n>% of the maximum heap size set with
  31. hello-exe: -M (default: 30%)
  32. hello-exe: -c Use in-place compaction for all oldest generation collections
  33. hello-exe: (the default is to use copying)
  34. hello-exe: -w Use mark-region for the oldest generation (experimental)
  35. hello-exe: -I<sec> Perform full GC after <sec> idle time (default: 0.3, 0 == off)
  36. hello-exe:
  37. hello-exe: -T Collect GC statistics (useful for in-program statistics access)
  38. hello-exe: -t[<file>] One-line GC statistics (if <file> omitted, uses stderr)
  39. hello-exe: -s[<file>] Summary GC statistics (if <file> omitted, uses stderr)
  40. hello-exe: -S[<file>] Detailed GC statistics (if <file> omitted, uses stderr)
  41. hello-exe:
  42. hello-exe:
  43. hello-exe: -Z Don't squeeze out update frames on stack overflow
  44. hello-exe: -B Sound the bell at the start of each garbage collection
  45. hello-exe:
  46. hello-exe: -h Heap residency profile (output file <program>.hp)
  47. hello-exe: -i<sec> Time between heap profile samples (seconds, default: 0.1)
  48. hello-exe:
  49. hello-exe: -C<secs> Context-switch interval in seconds.
  50. hello-exe: 0 or no argument means switch as often as possible.
  51. hello-exe: Default: 0.02 sec.
  52. hello-exe: -V<secs> Master tick interval in seconds (0 == disable timer).
  53. hello-exe: This sets the resolution for -C and the heap profile timer -i,
  54. hello-exe: and is the frequence of time profile samples.
  55. hello-exe: Default: 0.01 sec.
  56. hello-exe:
  57. hello-exe: --install-signal-handlers=<yes|no>
  58. hello-exe: Install signal handlers (default: yes)
  59. hello-exe: -e<n> Maximum number of outstanding local sparks (default: 4096)
  60. hello-exe: -xq The allocation limit given to a thread after it receives
  61. hello-exe: an AllocationLimitExceeded exception. (default: 100k)
  62. hello-exe:
  63. hello-exe: RTS options may also be specified using the GHCRTS environment variable.
  64. hello-exe:
  65. hello-exe: Other RTS options may be available for programs compiled a different way.
  66. hello-exe: The GHC User's Guide has full details.
  67. hello-exe:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement