From bad4a1d0fa2d04a9885da9320cf7e8b3082b391d Mon Sep 17 00:00:00 2001 From: ethbaat <jeno.balasko@ericsson.com> Date: Thu, 14 Apr 2016 12:14:54 +0200 Subject: [PATCH] Fix Solaris x86-64 support (req: Thomas Herrlin) Signed-off-by: ethbaat <jeno.balasko@ericsson.com> --- core/Error.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/core/Error.cc b/core/Error.cc index 72f6a2370..86d3035a0 100644 --- a/core/Error.cc +++ b/core/Error.cc @@ -173,6 +173,13 @@ static void __attribute((constructor)) init(void) { #define SKIP_FRAMES 1 #endif +// TODO: Values for __x86_64 are only guesses, not tested. +#if defined(__x86_64) +#define FLUSHWIN() +#define FRAME_PTR_INDEX 7 +#define SKIP_FRAMES 1 +#endif + #if defined(ppc) || defined(__ppc) #define FLUSHWIN() #define FRAME_PTR_INDEX 0 -- GitLab