summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorAvery2023-01-24 16:14:24 +0800
committerAvery2023-01-24 16:14:41 +0800
commitff64136059d0007f743585344e7e053a941cc4f7 (patch)
treedd0b4c69d70d32ed2c507191a00e8c1480facd75
parenta17f043d59da2fce49d3035825caeb1189bbf505 (diff)
downloadaur-ff64136059d0007f743585344e7e053a941cc4f7.tar.gz
chore: update srcinfo and include patch
-rw-r--r--.SRCINFO4
-rw-r--r--0000_Fix-numeric-limits.patch12
2 files changed, 15 insertions, 1 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8e43e7264591..47637e0ae833 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = ghidra-git
pkgdesc = Software reverse engineering framework (git)
- pkgver = 10.2.2.r435.552eb9dd6
+ pkgver = 10.2.2.r610.ba0b42dc8
pkgrel = 1
url = https://www.nsa.gov/ghidra
arch = x86_64
@@ -22,9 +22,11 @@ pkgbase = ghidra-git
source = ghidra.desktop
source = ghidra-root.desktop
source = ghidra.policy
+ source = 0000_Fix-numeric-limits.patch
sha512sums = SKIP
sha512sums = a85b8b3276e2ff4ed8bda6470c15d02711ebaa48463c775cd2a36549fad738e9fe073dab80f8c57646490ffc959cdc27e9d25b1dc2a5810b0ddb249b5dc99a9b
sha512sums = c717029cf31860e27b5563c3ff4b2740d4b1997bc50481214e24c38f12d9acbfa9ca2cbfe594d43071fbf8420ac8f022119c2c23ddef0c717d96860e22eb35c3
sha512sums = 0a35f58b1820ac65ce37d09b0a6904ab7018c773c73ecd29bcfda37cbd27f34af868585084b5cd408b1066b7956df043cb1573a1e3d890e173be737d2de51401
+ sha512sums = 76562e69f900b77198168b433c43624bd412796b2b63ad32abb5dc079b143fe52562febfa3d881fc0f2d07335c4bf6f555f0097599d5c69bfd9054d47e1b84d6
pkgname = ghidra-git
diff --git a/0000_Fix-numeric-limits.patch b/0000_Fix-numeric-limits.patch
new file mode 100644
index 000000000000..f85efc01cdac
--- /dev/null
+++ b/0000_Fix-numeric-limits.patch
@@ -0,0 +1,12 @@
+diff --git a/Ghidra/Features/Decompiler/src/decompile/cpp/float.cc b/Ghidra/Features/Decompiler/src/decompile/cpp/float.cc
+index 23bd6b385d..38c973ce85 100644
+--- a/Ghidra/Features/Decompiler/src/decompile/cpp/float.cc
++++ b/Ghidra/Features/Decompiler/src/decompile/cpp/float.cc
+@@ -18,6 +18,7 @@
+ #include "address.hh"
+
+ #include <cmath>
++#include <limits>
+ using std::ldexp;
+ using std::frexp;
+ using std::signbit;