We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1403bd commit 9079472Copy full SHA for 9079472
src/task.c
@@ -638,6 +638,10 @@ void jl_init_tasks(void) JL_GC_DISABLED
638
always_copy_stacks = 1;
639
else if (!strcmp(acs, "0") || !strcmp(acs, "no"))
640
always_copy_stacks = 0;
641
+ else {
642
+ jl_printf(JL_STDERR, "invalid JULIA_COPY_STACKS value: %s\n", acs);
643
+ exit(1);
644
+ }
645
}
646
647
0 commit comments