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
36 lines
1.6 KiB
Diff
36 lines
1.6 KiB
Diff
From 56d52ccf2fad2736e49d3cfc4c9df22492e1dbfc Mon Sep 17 00:00:00 2001
|
|
From: Mattias Ellert <mattias.ellert@physics.uu.se>
|
|
Date: Tue, 8 Jun 2021 02:46:18 +0200
|
|
Subject: [PATCH] Add TTreeProcessorMP to LinkDef
|
|
|
|
This fixes test failure:
|
|
|
|
745/1157 Test #729: tutorial-multicore-mp102_readNtuplesFillHistosAndFit ................***Failed 1.55 sec
|
|
Processing /builddir/build/BUILD/root-6.25.01/tutorials/multicore/mp102_readNtuplesFillHistosAndFit.C...
|
|
IncrementalExecutor::executeFunction: symbol '_ZN4ROOT16TTreeProcessorMPC1Ej' unresolved while linking [cling interface function]!
|
|
You are probably missing the definition of ROOT::TTreeProcessorMP::TTreeProcessorMP(unsigned int)
|
|
Maybe you need to load the corresponding shared library?
|
|
IncrementalExecutor::executeFunction: symbol '_ZN4ROOT16TTreeProcessorMP11ReplyToIdleEP7TSocket' unresolved while linking [cling interface function]!
|
|
You are probably missing the definition of ROOT::TTreeProcessorMP::ReplyToIdle(TSocket*)
|
|
Maybe you need to load the corresponding shared library?
|
|
CMake Error at /builddir/build/BUILD/root-6.25.01/x86_64-redhat-linux-gnu/RootTestDriver.cmake:237 (message):
|
|
error code: 1
|
|
---
|
|
tree/treeplayer/inc/LinkDef.h | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/tree/treeplayer/inc/LinkDef.h b/tree/treeplayer/inc/LinkDef.h
|
|
index e7fdd7c9bf..d195536a40 100644
|
|
--- a/tree/treeplayer/inc/LinkDef.h
|
|
+++ b/tree/treeplayer/inc/LinkDef.h
|
|
@@ -30,6 +30,7 @@
|
|
#pragma link C++ class TSimpleAnalysis+;
|
|
#ifndef _MSC_VER
|
|
#pragma link C++ class TMPWorkerTree+;
|
|
+#pragma link C++ class ROOT::TTreeProcessorMP-;
|
|
#endif
|
|
#ifdef R__USE_IMT
|
|
#pragma link C++ class ROOT::TTreeProcessorMT-;
|
|
--
|
|
2.31.1
|
|
|