We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f001b0 commit 3a309d9Copy full SHA for 3a309d9
1 file changed
unix/main.c
@@ -524,8 +524,10 @@ int main(int argc, char **argv) {
524
break;
525
} else if (strcmp(argv[a], "-X") == 0) {
526
a += 1;
527
+ #if MICROPY_DEBUG_PRINTERS
528
} else if (strcmp(argv[a], "-v") == 0) {
529
mp_verbose_flag++;
530
+ #endif
531
} else if (strncmp(argv[a], "-O", 2) == 0) {
532
if (unichar_isdigit(argv[a][2])) {
533
MP_STATE_VM(mp_optimise_value) = argv[a][2] & 0xf;
0 commit comments