summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/enable_execute_stack.c
diff options
context:
space:
mode:
Diffstat (limited to 'compiler-rt/lib/enable_execute_stack.c')
-rw-r--r--compiler-rt/lib/enable_execute_stack.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler-rt/lib/enable_execute_stack.c b/compiler-rt/lib/enable_execute_stack.c
index 2c1878238a9..534ce2f075a 100644
--- a/compiler-rt/lib/enable_execute_stack.c
+++ b/compiler-rt/lib/enable_execute_stack.c
@@ -24,7 +24,8 @@ void __enable_execute_stack(void* addr)
// On Darwin, pagesize is always 4096 bytes
const uintptr_t pageSize = 4096;
#else
- abort();
+ // FIXME: We should have a configure check for this.
+ const uintptr_t pagesize = getpagesize();
#endif
const uintptr_t pageAlignMask = ~(pageSize-1);
uintptr_t p = (uintptr_t)addr;
OpenPOWER on IntegriCloud