e2da2e1e69
This commit backports an upstream commit adding RISC-V support to libsigsegv, and adds a patch that finalizes the RISC-V support to make it compatible with cross-compilation. Fixes: http://autobuild.buildroot.net/results/bd12cb3db3b46860a4ab8fb91052319dce75202a/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Tested-by: Mark Corbin <mark.corbin@embecosm.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
From 9dd1989f5ae6cd3f2051732318e26bf742a4c89b Mon Sep 17 00:00:00 2001
|
|
From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
|
|
Date: Tue, 13 Nov 2018 22:24:03 +0100
|
|
Subject: [PATCH] m4/stack-direction: RISC-V stack grows downward
|
|
|
|
While commit 671b2528b55c57eda1a8fe5872ff1ef61014235f ("Improve
|
|
support for Linux/RISC-V") adds some support for the RISC-V
|
|
architecture, it doesn't update m4/stack-direction.m4 to properly
|
|
support cross-compiling libsigsegv for a RISC-V architecture.
|
|
|
|
According to
|
|
https://riscv.org/wp-content/uploads/2015/01/riscv-calling.pdf: "In
|
|
the standard RISC-V calling convention, the stack grows downward", so
|
|
let's update m4/stack-direction.m4 accordingly.
|
|
|
|
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
|
|
---
|
|
m4/stack-direction.m4 | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/m4/stack-direction.m4 b/m4/stack-direction.m4
|
|
index c373f1c..9504f88 100644
|
|
--- a/m4/stack-direction.m4
|
|
+++ b/m4/stack-direction.m4
|
|
@@ -43,6 +43,7 @@ AC_DEFUN([SV_STACK_DIRECTION],
|
|
pdp11 | \
|
|
pj* | \
|
|
powerpc* | rs6000 | \
|
|
+ riscv* | \
|
|
romp | \
|
|
s390* | \
|
|
sh* | \
|
|
--
|
|
2.19.1
|
|
|