Skip to content
Snippets Groups Projects
Commit 649b69a1 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

unix/main: Improve help for -X options a bit.

parent 0e5e14fe
Branches
No related tags found
No related merge requests found
...@@ -293,7 +293,7 @@ STATIC int usage(char **argv) { ...@@ -293,7 +293,7 @@ STATIC int usage(char **argv) {
"-v : verbose (trace various operations); can be multiple\n" "-v : verbose (trace various operations); can be multiple\n"
"-O[N] : apply bytecode optimizations of level N\n" "-O[N] : apply bytecode optimizations of level N\n"
"\n" "\n"
"Implementation specific options:\n", argv[0] "Implementation specific options (-X):\n", argv[0]
); );
int impl_opts_cnt = 0; int impl_opts_cnt = 0;
printf( printf(
...@@ -303,7 +303,7 @@ STATIC int usage(char **argv) { ...@@ -303,7 +303,7 @@ STATIC int usage(char **argv) {
impl_opts_cnt++; impl_opts_cnt++;
#if MICROPY_ENABLE_GC #if MICROPY_ENABLE_GC
printf( printf(
" heapsize=<n> -- set the heap size for the GC (default %ld)\n" " heapsize=<n>[w][K|M] -- set the heap size for the GC (default %ld)\n"
, heap_size); , heap_size);
impl_opts_cnt++; impl_opts_cnt++;
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment