Lines Matching refs:choices
77 buildgrp.add_argument('--lto', metavar='X', choices=['ON', 'OFF'], type=str.upper,
78 help='enable link-time optimizations (%(choices)s)')
79 buildgrp.add_argument('--shared-libs', metavar='X', choices=['ON', 'OFF'], type=str.upper,
80 help='enable building of shared libraries (%(choices)s)')
81 buildgrp.add_argument('--strip', metavar='X', choices=['ON', 'OFF'], type=str.upper,
82 help='strip release binaries (%(choices)s)')
89 compgrp.add_argument('--doctests', metavar='X', choices=['ON', 'OFF'], type=str.upper,
90 help=devhelp('build doctests (%(choices)s)'))
91 compgrp.add_argument('--jerry-cmdline', metavar='X', choices=['ON', 'OFF'], type=str.upper,
92 help='build jerry command line tool (%(choices)s)')
93 compgrp.add_argument('--jerry-cmdline-snapshot', metavar='X', choices=['ON', 'OFF'], type=str.upper,
94 help='build snapshot command line tool (%(choices)s)')
95 compgrp.add_argument('--jerry-cmdline-test', metavar='X', choices=['ON', 'OFF'], type=str.upper,
96 help=devhelp('build test version of the jerry command line tool (%(choices)s)'))
97 compgrp.add_argument('--libfuzzer', metavar='X', choices=['ON', 'OFF'], type=str.upper,
98 help=devhelp('build jerry with libfuzzer support (%(choices)s)'))
99 compgrp.add_argument('--jerry-ext', metavar='X', choices=['ON', 'OFF'], type=str.upper,
100 help='build jerry-ext (%(choices)s)')
101 compgrp.add_argument('--jerry-libm', metavar='X', choices=['ON', 'OFF'], type=str.upper,
102 help='build and use jerry-libm (%(choices)s)')
103 compgrp.add_argument('--jerry-port-default', metavar='X', choices=['ON', 'OFF'], type=str.upper,
104 help='build default jerry port implementation (%(choices)s)')
105 compgrp.add_argument('--unittests', metavar='X', choices=['ON', 'OFF'], type=str.upper,
106 help=devhelp('build unittests (%(choices)s)'))
109 coregrp.add_argument('--all-in-one', metavar='X', choices=['ON', 'OFF'], type=str.upper,
110 help='all-in-one build (%(choices)s)')
111 coregrp.add_argument('--cpointer-32bit', metavar='X', choices=['ON', 'OFF'], type=str.upper,
112 help='enable 32 bit compressed pointers (%(choices)s)')
113 coregrp.add_argument('--error-messages', metavar='X', choices=['ON', 'OFF'], type=str.upper,
114 help='enable error messages (%(choices)s)')
115 coregrp.add_argument('--external-context', metavar='X', choices=['ON', 'OFF'], type=str.upper,
116 help='enable external context (%(choices)s)')
117 coregrp.add_argument('--jerry-debugger', metavar='X', choices=['ON', 'OFF'], type=str.upper,
118 help='enable the jerry debugger (%(choices)s)')
119 coregrp.add_argument('--js-parser', metavar='X', choices=['ON', 'OFF'], type=str.upper,
120 help='enable js-parser (%(choices)s)')
121 coregrp.add_argument('--line-info', metavar='X', choices=['ON', 'OFF'], type=str.upper,
122 help='provide line info (%(choices)s)')
123 coregrp.add_argument('--logging', metavar='X', choices=['ON', 'OFF'], type=str.upper,
124 help='enable logging (%(choices)s)')
133 coregrp.add_argument('--mem-stats', metavar='X', choices=['ON', 'OFF'], type=str.upper,
134 help=devhelp('enable memory statistics (%(choices)s)'))
135 coregrp.add_argument('--mem-stress-test', metavar='X', choices=['ON', 'OFF'], type=str.upper,
136 help=devhelp('enable mem-stress test (%(choices)s)'))
139 coregrp.add_argument('--regexp-strict-mode', metavar='X', choices=['ON', 'OFF'], type=str.upper,
140 help=devhelp('enable regexp strict mode (%(choices)s)'))
141 coregrp.add_argument('--show-opcodes', metavar='X', choices=['ON', 'OFF'], type=str.upper,
142 help=devhelp('enable parser byte-code dumps (%(choices)s)'))
143 coregrp.add_argument('--show-regexp-opcodes', metavar='X', choices=['ON', 'OFF'], type=str.upper,
144 help=devhelp('enable regexp byte-code dumps (%(choices)s)'))
145 coregrp.add_argument('--snapshot-exec', metavar='X', choices=['ON', 'OFF'], type=str.upper,
146 help='enable executing snapshot files (%(choices)s)')
147 coregrp.add_argument('--snapshot-save', metavar='X', choices=['ON', 'OFF'], type=str.upper,
148 help='enable saving snapshot files (%(choices)s)')
149 coregrp.add_argument('--system-allocator', metavar='X', choices=['ON', 'OFF'], type=str.upper,
150 help='enable system allocator (%(choices)s)')
151 coregrp.add_argument('--valgrind', metavar='X', choices=['ON', 'OFF'], type=str.upper,
152 help=devhelp('enable Valgrind support (%(choices)s)'))
153 coregrp.add_argument('--vm-exec-stop', metavar='X', choices=['ON', 'OFF'], type=str.upper,
154 help='enable VM execution stopping (%(choices)s)')
157 maingrp.add_argument('--link-map', metavar='X', choices=['ON', 'OFF'], type=str.upper,
158 help=devhelp('enable the generation of link map for jerry command line tool (%(choices)s)'))