ROOT now uses llvm/clang version 9 (updated from version 5)
No longer exclude arch s390x (better supported in llvm/clang 9)
Drop patches accepted upstream or previously backported
Backport some fixes that make more tests work
New subpackages: python{2,3}-distrdf, root-roofit-batchcompute
Require js-jsroot >= 6
26 lines
878 B
Diff
26 lines
878 B
Diff
From 2e3fabbe5423f50ee98ce848d8e85ec7a2a2106d Mon Sep 17 00:00:00 2001
|
|
From: Enrico Guiraud <enrico.guiraud@cern.ch>
|
|
Date: Thu, 15 Jul 2021 12:17:56 +0200
|
|
Subject: [PATCH] [DF] Add RCutFlowReport to LinkDef
|
|
|
|
This should fix some sporadic failures in cling's symbol resolution
|
|
in builds without runtime cxx modules.
|
|
---
|
|
tree/dataframe/inc/LinkDef.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/tree/dataframe/inc/LinkDef.h b/tree/dataframe/inc/LinkDef.h
|
|
index 8103468082..684fc3b6f1 100644
|
|
--- a/tree/dataframe/inc/LinkDef.h
|
|
+++ b/tree/dataframe/inc/LinkDef.h
|
|
@@ -58,6 +58,7 @@
|
|
#pragma link C++ class ROOT::Detail::RDF::RMergeableValue<TProfile>+;
|
|
#pragma link C++ class ROOT::Detail::RDF::RMergeableValue<TProfile2D>+;
|
|
#pragma link C++ class TNotifyLink<ROOT::Internal::RDF::RDataBlockFlag>;
|
|
+#pragma link C++ class ROOT::RDF::RCutFlowReport;
|
|
|
|
#endif
|
|
|
|
--
|
|
2.31.1
|
|
|