From 2953f5147b5d84b846a1d756652582ad3e5348fe Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 26 Apr 2016 14:25:22 +0930 Subject: [PATCH 1/1] configurator: fix HAVE_UCONTEXT test on Ubuntu 16.04. Seems to want more stack. Signed-off-by: Rusty Russell --- tools/configurator/configurator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/configurator/configurator.c b/tools/configurator/configurator.c index 370170b8..5d959cf3 100644 --- a/tools/configurator/configurator.c +++ b/tools/configurator/configurator.c @@ -323,7 +323,7 @@ static struct test tests[] = { NULL, NULL, "#include \n" "static int x = 0;\n" - "static char stack[1024];\n" + "static char stack[2048];\n" "static ucontext_t a, b;\n" "static void fn(void) {\n" " x |= 2;\n" -- 2.39.2