diff options
author | Benjamin Barenblat <bbaren@google.com> | 2020-11-06 10:48:34 -0500 |
---|---|---|
committer | Benjamin Barenblat <bbaren@google.com> | 2020-11-06 16:48:05 -0500 |
commit | cdc399af44f560f7dd5d9b58b4be9caf1f3a7dac (patch) | |
tree | f911d0009d302f2b56fa626a3568ed16ca6de0df /debian/patches | |
parent | f236ca16ea0476d5f38a526c2bdfe4afcbb66902 (diff) |
Fix build on hppa
Closes: https://bugs.debian.org/971768
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/fix-hppa.diff | 26 | ||||
-rw-r--r-- | debian/patches/series | 1 |
2 files changed, 27 insertions, 0 deletions
diff --git a/debian/patches/fix-hppa.diff b/debian/patches/fix-hppa.diff new file mode 100644 index 00000000..915efff4 --- /dev/null +++ b/debian/patches/fix-hppa.diff @@ -0,0 +1,26 @@ +From: John David Anglin <dave.anglin@bell.net> +Subject: Fix build on hppa +Bug-Debian: https://bugs.debian.org/971768 +Reviewed-by: Benjamin Barenblat <bbaren@debian.org> + +--- a/absl/base/internal/direct_mmap.h ++++ b/absl/base/internal/direct_mmap.h +@@ -74,6 +74,7 @@ + inline void* DirectMmap(void* start, size_t length, int prot, int flags, int fd, + off64_t offset) noexcept { + #if defined(__i386__) || defined(__ARM_ARCH_3__) || defined(__ARM_EABI__) || \ ++ (defined(__hppa__) && !defined(__LP64__)) || \ + (defined(__mips__) && _MIPS_SIM == _MIPS_SIM_ABI32) || \ + (defined(__PPC__) && !defined(__PPC64__)) || \ + (defined(__riscv) && __riscv_xlen == 32) || \ +--- a/absl/debugging/internal/examine_stack.cc ++++ b/absl/debugging/internal/examine_stack.cc +@@ -48,6 +48,8 @@ + return reinterpret_cast<void*>(context->uc_mcontext.pc); + #elif defined(__arm__) + return reinterpret_cast<void*>(context->uc_mcontext.arm_pc); ++#elif defined(__hppa__) ++ return reinterpret_cast<void*>(context->uc_mcontext.sc_iaoq[0]); + #elif defined(__i386__) + if (14 < ABSL_ARRAYSIZE(context->uc_mcontext.gregs)) + return reinterpret_cast<void*>(context->uc_mcontext.gregs[14]); diff --git a/debian/patches/series b/debian/patches/series index dbd8a0ad..481e6995 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1 +1,2 @@ configure.diff +fix-hppa.diff |