From 8b1ba846e64934b696812e005fc4ef635056a428 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Tue, 10 May 2016 19:32:43 -0700 Subject: [PATCH] Fix typo. We want #ifndef, not #ifdef to enable the relocatable stacks. --- src/lisp/x86-validate-linux.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lisp/x86-validate-linux.h b/src/lisp/x86-validate-linux.h index 3d9f3cd22..7b22a1aaa 100644 --- a/src/lisp/x86-validate-linux.h +++ b/src/lisp/x86-validate-linux.h @@ -45,17 +45,17 @@ #define STATIC_SPACE_START (SpaceStart_TargetStatic) #define STATIC_SPACE_SIZE (0x0ffff000) /* 256MB - 1 page */ -#ifdef RELOCATABLE_STACK_START +#ifndef RELOCATABLE_STACK_START #define BINDING_STACK_START (0x20000000) #endif #define BINDING_STACK_SIZE (0x07fff000) /* 128MB - 1 page */ -#ifdef RELOCATABLE_STACK_START +#ifndef RELOCATABLE_STACK_START #define CONTROL_STACK_START 0x38000000 #endif #define CONTROL_STACK_SIZE (0x07fff000 - 8192) -#ifdef RELOCATABLE_STACK_START +#ifndef RELOCATABLE_STACK_START #define SIGNAL_STACK_START CONTROL_STACK_END #endif #define SIGNAL_STACK_SIZE SIGSTKSZ -- GitLab