From 5747bf407ed62f101378ff273069f18cc9c96da9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Gia=20Phong?= Date: Thu, 25 May 2023 15:58:15 +0900 Subject: [PATCH 1/2] Specify ncurses directly Multiple distributions have dropped the libcurses -> libncurses alias. --- README.md | 2 +- src/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f6c2d4471..af94793ba 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Repair with meta-program, search with Casino. * LLVM/Clang 11 * Python 3.6+ * zlib -* libcurses +* libncurses * pthread ## Docker Image diff --git a/src/Makefile.am b/src/Makefile.am index 3a8a2df38..b6c4052cd 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -42,7 +42,7 @@ ClangLDADD += -lLLVMXRay -lLLVMWindowsManifest -lLLVMTableGen -lLLVMSymbolize -l -lLLVMTextAPI -lLLVMBitReader -lLLVMCore -lLLVMRemarks -lLLVMBitstreamReader \ -lLLVMAArch64AsmParser -lLLVMMCParser -lLLVMAArch64Desc -lLLVMMC -lLLVMDebugInfoCodeView \ -lLLVMDebugInfoMSF -lLLVMBinaryFormat -lLLVMAArch64Utils -lLLVMAArch64Info -lLLVMSupport \ --lLLVMDemangle -lz -lcurses +-lLLVMDemangle -lz -lncurses pdiffer_SOURCES = pdiffer.cpp Utils.cpp ASTDiffer.cpp ProfileWriter.cpp SourceContextManager.cpp LocalAnalyzer.cpp \ GlobalAnalyzer.cpp ASTUtils.cpp BenchProgram.cpp RepairCandidateGenerator.cpp \ From 3f59bfbb25f1d48e4df06f60e5a56bf016086349 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Gia=20Phong?= Date: Thu, 25 May 2023 18:16:51 +0900 Subject: [PATCH 2/2] Document dependency libexplain To be consistent with the requirements file. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index af94793ba..5952786c0 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ Repair with meta-program, search with Casino. * LLVM/Clang 11 * Python 3.6+ * zlib +* libexplain * libncurses * pthread