aboutsummaryrefslogtreecommitdiffstats
path: root/community/llvm3.7/llvm-nm-workaround.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2016-08-17 22:10:34 +0200
committerJakub Jirutka <jakub@jirutka.cz>2016-08-17 22:10:34 +0200
commitc7c00f22fa96aaaed4ef025e8381b44642306281 (patch)
tree854793394d51dc556162c5d44f8662e9eaa2e4cd /community/llvm3.7/llvm-nm-workaround.patch
parent28eea326ce6605ee708cb1df0c67a3f90cdb5a79 (diff)
downloadaports-c7c00f22fa96aaaed4ef025e8381b44642306281.tar.bz2
aports-c7c00f22fa96aaaed4ef025e8381b44642306281.tar.xz
community/llvm3.7: move from testing
Diffstat (limited to 'community/llvm3.7/llvm-nm-workaround.patch')
-rw-r--r--community/llvm3.7/llvm-nm-workaround.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/community/llvm3.7/llvm-nm-workaround.patch b/community/llvm3.7/llvm-nm-workaround.patch
new file mode 100644
index 0000000000..5755e57ff3
--- /dev/null
+++ b/community/llvm3.7/llvm-nm-workaround.patch
@@ -0,0 +1,27 @@
+From https://llvm.org/bugs/show_bug.cgi?id=24115
+
+diff --git a/tools/llvm-nm/llvm-nm.cpp b/tools/llvm-nm/llvm-nm.cpp
+index e7ee312..b9e4779 100644
+--- a/tools/llvm-nm/llvm-nm.cpp
++++ b/tools/llvm-nm/llvm-nm.cpp
+@@ -486,7 +486,7 @@ static void sortAndPrintSymbolList(SymbolicFile &Obj, bool printName,
+ std::string ArchiveName,
+ std::string ArchitectureName) {
+ if (!NoSort) {
+- std::function<bool(const NMSymbol &, const NMSymbol &)> Cmp;
++ bool (*Cmp)(const NMSymbol &, const NMSymbol &);
+ if (NumericSort)
+ Cmp = compareSymbolAddress;
+ else if (SizeSort)
+@@ -495,8 +495,9 @@ static void sortAndPrintSymbolList(SymbolicFile &Obj, bool printName,
+ Cmp = compareSymbolName;
+
+ if (ReverseSort)
+- Cmp = [=](const NMSymbol &A, const NMSymbol &B) { return Cmp(B, A); };
+- std::sort(SymbolList.begin(), SymbolList.end(), Cmp);
++ std::sort(SymbolList.begin(), SymbolList.end(), [=](const NMSymbol &A, const NMSymbol &B) { return Cmp(B, A); });
++ else
++ std::sort(SymbolList.begin(), SymbolList.end(), Cmp);
+ }
+
+ if (!PrintFileName) {