Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build and test failures on RHEL+EPEL 8 ppc64le #12372

Open
ellert opened this issue Feb 23, 2023 · 0 comments
Open

Build and test failures on RHEL+EPEL 8 ppc64le #12372

ellert opened this issue Feb 23, 2023 · 0 comments
Assignees
Labels

Comments

@ellert
Copy link
Contributor

ellert commented Feb 23, 2023

Describe the bug

When building root 6.28.00 for RHEL+EPEL 8 on ppc64le there are build and test failures.

Test failures happens in compiled unit tests (gtest), tests using interpreded root and tests using python.

All tests fail with the error "pure virtual method called" and the backtrace all indicate the same line:

#9  llvm::orc::ExecutionSession::lookup (this=0x1099d16e0, SearchOrder=std::vector of length 1, capacity 1 = {...}, Name=..., RequiredState=<optimized out>) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/lib/ExecutionEngine/Orc/Core.cpp:2040

Expected<JITEvaluatedSymbol>
ExecutionSession::lookup(const JITDylibSearchOrder &SearchOrder,
SymbolStringPtr Name, SymbolState RequiredState) {
SymbolLookupSet Names({Name});
if (auto ResultMap = lookup(SearchOrder, std::move(Names), LookupKind::Static,
RequiredState, NoDependenciesToRegister)) {
assert(ResultMap->size() == 1 && "Unexpected number of results");
assert(ResultMap->count(Name) && "Missing result for symbol");
return std::move(ResultMap->begin()->second);
} else
return ResultMap.takeError();
}

187 tests fail with the error "pure virtual method called". Most of them are related to dataframe or roofit, but not exclusively.

These errors do not happen on the other RHEL+EPEL 8 architecture (x86_64).
These errors do not happen on ppc64le on other systems: RHEL+EPEL 9, Fedora 36, 37, 38, 39.

It is specific to ppc64le on RHEL+EPEL 8.

Expected behaviour

Root should behave the same on RHEL+EPEL 8 ppc64le and RHEL+EPEL 8 x86_64.

To Reproduce

Steps to reproduce the behavior:

  1. Build root 6.28.00 for RHEL+EPEL 8 on ppc64le using the default compiler -- g++ (GCC) 8.5.0 20210514 (Red Hat 8.5.0-16)
  2. Run tests.

Setup

  1. ROOT version 6.28.00
  2. Operating system RHEL+EPEL 8 ppc64le
  3. Built from source.

Additional context

How the build crashes with the SOFIE parser option enabled:

===========================================================
There was a crash (#5 0x00007fffa8fac284 in SigHandler (sig=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:395).
This is the entire stack trace of all threads:
===========================================================
#0  0x00007fffa84f2f04 in waitpid () from /lib64/glibc-hwcaps/power9/libc-2.28.so
#1  0x00007fffa845a38c in do_system () from /lib64/glibc-hwcaps/power9/libc-2.28.so
#2  0x00007fffa8fa9044 in TUnixSystem::Exec (shellcmd=<optimized out>, this=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:2104
#3  TUnixSystem::StackTrace (this=0x1098e5850) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:2395
#4  0x00007fffa8fac1c8 in TUnixSystem::DispatchSignals (this=0x1098e5850, sig=kSigSegmentationViolation) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:3615
#5  0x00007fffa8fac284 in SigHandler (sig=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:395
#6  0x00007fffa8fa308c in sighandler (sig=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:3586
#7  <signal handler called>
===========================================================
The lines below might hint at the cause of the crash. If you see question
marks as part of the stack trace, try to recompile with debugging information
enabled and export CLING_DEBUG=1 environment variable before running.
You may get help by asking at the ROOT forum https://root.cern/forum
Only if you are really convinced it is a bug in ROOT then please submit a
report at https://root.cern/bugs Please post the ENTIRE stack trace
from above as an attachment in addition to anything else
that might help us fixing this issue.
===========================================================
#8  llvm::Expected<llvm::JITEvaluatedSymbol>::Expected<llvm::JITEvaluatedSymbol> (Val=..., this=0x7ffff83e9070) at /usr/include/c++/8/new:169
#9  llvm::orc::ExecutionSession::lookup (this=0x1099d16e0, SearchOrder=std::vector of length 1, capacity 1 = {...}, Name=..., RequiredState=<optimized out>) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/lib/ExecutionEngine/Orc/Core.cpp:2040
#10 0x00007fffa4604d20 in llvm::orc::LLJIT::lookupLinkerMangled (this=<optimized out>, JD=..., Name=...) at /usr/include/c++/8/bits/atomic_base.h:295
#11 0x00007fffa3058c20 in llvm::orc::LLJIT::lookupLinkerMangled (Name=..., JD=..., this=0x10993f430) at /usr/include/c++/8/ppc64le-redhat-linux/bits/gthr-default.h:778
#12 llvm::orc::LLJIT::lookup (UnmangledName=..., JD=..., this=0x10993f430) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/include/llvm/ExecutionEngine/Orc/LLJIT.h:132
#13 llvm::orc::LLJIT::lookup (UnmangledName=..., this=0x10993f430) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/include/llvm/ExecutionEngine/Orc/LLJIT.h:137
#14 cling::IncrementalJIT::getSymbolAddress (this=0x109984c70, Name=..., IncludeHostSymbols=<optimized out>) at /builddir/build/BUILD/root-6.28.00/interpreter/cling/lib/Interpreter/IncrementalJIT.cpp:583
#15 0x00007fffa3050770 in cling::IncrementalExecutor::getPointerToGlobalFromJIT (this=0x1099ceb50, name=...) at /usr/include/c++/8/bits/unique_ptr.h:345
#16 0x00007fffa2f9fee4 in cling::Interpreter::compileFunction (this=0x10994ea90, name=..., code=..., ifUnique=<optimized out>, withAccessControl=<optimized out>) at /usr/include/c++/8/bits/unique_ptr.h:345
#17 0x00007fffa2efea78 in TClingCallFunc::compile_wrapper (this=<optimized out>, wrapper_name=..., wrapper=..., withAccessControl=<optimized out>) at /usr/include/c++/8/bits/basic_string.h:2306
#18 0x00007fffa2f067e8 in TClingCallFunc::make_ctor_wrapper (this=0x7ffff83e96e0, info=0x10a9e3870, kind=<optimized out>, type_name=...) at /builddir/build/BUILD/root-6.28.00/core/metacling/src/TClingCallFunc.cxx:1215
#19 0x00007fffa2f07164 in TClingCallFunc::ExecDefaultConstructor (this=0x7ffff83e96e0, info=0x10a9e3870, kind=<optimized out>, type_name="", address=0x0, nary=0) at /builddir/build/BUILD/root-6.28.00/core/metacling/src/TClingCallFunc.cxx:1895
#20 0x00007fffa2f1838c in TClingClassInfo::New (this=0x10a9e3870, normCtxt=...) at /builddir/build/BUILD/root-6.28.00/core/metacling/src/TClingClassInfo.cxx:1098
#21 0x00007fffa2e2cdf4 in TCling::ClassInfo_New (this=<optimized out>, cinfo=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/metacling/src/TCling.cxx:8290
#22 0x00007fffa8f0be24 in TClass::NewObject (this=0x10a9218e0, defConstructor=<optimized out>, quiet=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/meta/inc/TClass.h:433
#23 0x00007fffa8f0fa14 in TClass::New (this=<optimized out>, defConstructor=<optimized out>, quiet=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/meta/src/TClass.cxx:4969
#24 0x00007fffa92e0724 in TBufferFile::ReadObjectAny (this=0x7ffff83ea100, clCast=0x10a861920) at /builddir/build/BUILD/root-6.28.00/io/io/src/TBufferFile.cxx:2458
#25 0x00007fffa9389c44 in TGenCollectionStreamer::ReadObjects (this=0x10a861070, nElements=<optimized out>, b=..., onFileClass=<optimized out>) at /builddir/build/BUILD/root-6.28.00/io/io/src/TGenCollectionStreamer.cxx:395
#26 0x00007fffa938a6f8 in TGenCollectionStreamer::ReadBufferGeneric (this=<optimized out>, b=..., obj=0x109986cc0, onFileClass=<optimized out>) at /builddir/build/BUILD/root-6.28.00/io/io/src/TGenCollectionStreamer.cxx:1368
#27 0x00007fffa93850a8 in TGenCollectionStreamer::ReadBufferDefault (this=0x10a861070, b=..., obj=0x109986cc0, onFileClass=0x0) at /builddir/build/BUILD/root-6.28.00/io/io/src/TGenCollectionStreamer.cxx:1302
#28 0x00007fffa9384f00 in TGenCollectionStreamer::ReadBuffer (this=<optimized out>, b=..., obj=<optimized out>) at /builddir/build/BUILD/root-6.28.00/io/io/src/TGenCollectionStreamer.cxx:1232
#29 0x00007fffa933ff7c in TCollectionClassStreamer::Stream (onfileClass=0x10a860aa0, obj=0x109986cc0, b=..., this=<optimized out>) at /builddir/build/BUILD/root-6.28.00/io/io/inc/TCollectionProxyFactory.h:177
#30 TCollectionClassStreamer::Stream (this=<optimized out>, b=..., obj=0x109986cc0, onfileClass=0x10a860aa0) at /builddir/build/BUILD/root-6.28.00/io/io/inc/TCollectionProxyFactory.h:172
#31 0x00007fffa8f04014 in TClass::StreamerExternal (pThis=<optimized out>, object=0x109986cc0, b=..., onfile_class=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/meta/src/TClass.cxx:6783
#32 0x00007fffa92db554 in TClass::Streamer (onfile_class=0x10a860aa0, b=..., obj=<optimized out>, this=0x10a860aa0) at /builddir/build/BUILD/root-6.28.00/core/meta/inc/TClass.h:610
#33 TBufferFile::ReadFastArray (streamer=0x0, onFileClass=0x10a860aa0, n=1, cl=0x10a860aa0, start=<optimized out>, this=0x7ffff83ea100) at /builddir/build/BUILD/root-6.28.00/io/io/src/TBufferFile.cxx:1609
#34 TBufferFile::ReadFastArray (this=0x7ffff83ea100, start=<optimized out>, cl=0x10a860aa0, n=<optimized out>, streamer=<optimized out>, onFileClass=0x10a860aa0) at /builddir/build/BUILD/root-6.28.00/io/io/src/TBufferFile.cxx:1596
#35 0x00007fffa94a224c in TStreamerInfoActions::ReadSTLObjectWiseFastArray (conf=0x10a395fa0, addr=<optimized out>, buf=...) at /builddir/build/BUILD/root-6.28.00/io/io/src/TStreamerInfoActions.cxx:1362
#36 TStreamerInfoActions::ReadSTL<&TStreamerInfoActions::ReadSTLMemberWiseSameClass, &TStreamerInfoActions::ReadSTLObjectWiseFastArray> (buf=..., addr=0x109986ba0, conf=0x10a395fa0) at /builddir/build/BUILD/root-6.28.00/io/io/src/TStreamerInfoActions.cxx:1405
#37 0x00007fffa92d3130 in TStreamerInfoActions::TConfiguredAction::operator() (this=0x109f4d790, this=0x109f4d790, object=0x109986ba0, buffer=...) at /builddir/build/BUILD/root-6.28.00/io/io/inc/TStreamerInfoActions.h:123
#38 TBufferFile::ApplySequence (obj=0x109986ba0, sequence=..., this=0x7ffff83ea100) at /builddir/build/BUILD/root-6.28.00/io/io/src/TBufferFile.cxx:3580
#39 TBufferFile::ApplySequence (this=0x7ffff83ea100, sequence=..., obj=0x109986ba0) at /builddir/build/BUILD/root-6.28.00/io/io/src/TBufferFile.cxx:3562
#40 0x00007fffa92de27c in TBufferFile::ReadClassBuffer (this=0x7ffff83ea100, cl=0x10a596170, pointer=0x109986ba0, onFileClass=<optimized out>) at /builddir/build/BUILD/root-6.28.00/io/io/inc/TStreamerInfo.h:209
#41 0x00007fffa8f0d858 in TClass::ReadBuffer (this=<optimized out>, b=..., pointer=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/meta/src/TClass.cxx:6758
#42 0x00007fffa98ea688 in TMVA::Experimental::SOFIE::RModel::Streamer (R(bool)=..., this=0x109986ba0) at /builddir/build/BUILD/root-6.28.00/tmva/sofie/src/RModel.cxx:646
#43 TMVA::Experimental::SOFIE::RModel::Streamer (this=0x109986ba0, R(bool)=...) at /builddir/build/BUILD/root-6.28.00/tmva/sofie/src/RModel.cxx:644
#44 0x00007fffa8f0aa30 in TClass::StreamerTObject (pThis=0x10a596170, object=0x109986ba0, b=...) at /builddir/build/BUILD/root-6.28.00/core/meta/src/TClass.cxx:6797
#45 0x00007fffa93abef0 in TClass::Streamer (onfile_class=0x0, b=..., obj=0x109986ba0, this=0x10a596170) at /builddir/build/BUILD/root-6.28.00/core/meta/inc/TClass.h:610
#46 TKey::ReadObjectAny (this=0x10aa98220, expectedClass=<optimized out>) at /builddir/build/BUILD/root-6.28.00/io/io/src/TKey.cxx:1102
#47 0x00007fffa934c51c in TDirectoryFile::GetObjectChecked (this=0x7ffff83eb1c8, namecycle=<optimized out>, expectedClass=0x10a596170) at /builddir/build/BUILD/root-6.28.00/io/io/src/TDirectoryFile.cxx:1111
#48 0x0000000108cd56c0 in TDirectory::GetObject<TMVA::Experimental::SOFIE::RModel> (ptr=<synthetic pointer>: <optimized out>, namecycle=0x108cd6d08 "model", this=0x7ffff83eb1c8) at /builddir/build/BUILD/root-6.28.00/core/meta/inc/TClass.h:651
#49 EmitModel (inputfile=..., outname="Add") at /builddir/build/BUILD/root-6.28.00/ppc64le-redhat-linux-gnu/tmva/sofie/test/EmitFromRoot_all.cxx:26
#50 0x0000000108cd23dc in main (argc=<optimized out>, argv=<optimized out>) at /usr/include/c++/8/ext/new_allocator.h:79
===========================================================
pure virtual method called
terminate called without an active exception
Subprocess aborted

Disabling the SOFIE parser, so that the build completes. There are error during testing:

There are failures when running in interpreter mode:

  98/1192 Test  #779: tutorial-roofit-rf104_classfactory ..................................***Failed  Error regular expression found in output. Regex=[segmentation violation]126.58 sec
Processing /builddir/build/BUILD/root-6.28.00/tutorials/roofit/rf104_classfactory.C...
 *** Break *** segmentation violation
===========================================================
There was a crash (#5 0x00007fffa8bac284 in SigHandler (sig=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:395).
This is the entire stack trace of all threads:
===========================================================
#0  0x00007fffa80f2f04 in waitpid () from /lib64/glibc-hwcaps/power9/libc-2.28.so
#1  0x00007fffa805a38c in do_system () from /lib64/glibc-hwcaps/power9/libc-2.28.so
#2  0x00007fffa8ba9044 in TUnixSystem::Exec (shellcmd=<optimized out>, this=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:2104
#3  TUnixSystem::StackTrace (this=0x11eee5850) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:2395
#4  0x00007fffa8bac1c8 in TUnixSystem::DispatchSignals (this=0x11eee5850, sig=kSigSegmentationViolation) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:3615
#5  0x00007fffa8bac284 in SigHandler (sig=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:395
#6  0x00007fffa8ba308c in sighandler (sig=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:3586
#7  0x00007fffa8b9d428 in textinput::TerminalConfigUnix::HandleSignal (this=0x7fffa8db70c0 <textinput::TerminalConfigUnix::Get()::s>, signum=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/textinput/src/textinput/TerminalConfigUnix.cpp:99
#8  0x00007fffa8b9d47c in (anonymous namespace)::TerminalConfigUnix__handleSignal (signum=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/textinput/src/textinput/TerminalConfigUnix.cpp:36
#9  <signal handler called>
===========================================================
The lines below might hint at the cause of the crash. If you see question
marks as part of the stack trace, try to recompile with debugging information
enabled and export CLING_DEBUG=1 environment variable before running.
You may get help by asking at the ROOT forum https://root.cern/forum
Only if you are really convinced it is a bug in ROOT then please submit a
report at https://root.cern/bugs Please post the ENTIRE stack trace
from above as an attachment in addition to anything else
that might help us fixing this issue.
===========================================================
#10 llvm::Expected<llvm::JITEvaluatedSymbol>::Expected<llvm::JITEvaluatedSymbol> (Val=..., this=0x7fffff156ce0) at /usr/include/c++/8/new:169
#11 llvm::orc::ExecutionSession::lookup (this=0x11efcd6f0, SearchOrder=std::vector of length 1, capacity 1 = {...}, Name=..., RequiredState=<optimized out>) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/lib/ExecutionEngine/Orc/Core.cpp:2040
#12 0x00007fffa4004d00 in llvm::orc::LLJIT::lookupLinkerMangled (this=<optimized out>, JD=..., Name=...) at /usr/include/c++/8/bits/atomic_base.h:295
#13 0x00007fffa2a59050 in llvm::orc::LLJIT::lookupLinkerMangled (Name=..., JD=..., this=0x11efcd4b0) at /usr/include/c++/8/ppc64le-redhat-linux/bits/gthr-default.h:778
#14 llvm::orc::LLJIT::lookup (UnmangledName=..., JD=..., this=0x11efcd4b0) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/include/llvm/ExecutionEngine/Orc/LLJIT.h:132
#15 llvm::orc::LLJIT::lookup (UnmangledName=..., this=0x11efcd4b0) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/include/llvm/ExecutionEngine/Orc/LLJIT.h:137
#16 cling::IncrementalJIT::getSymbolAddress (this=0x11ef800c0, Name=..., IncludeHostSymbols=<optimized out>) at /builddir/build/BUILD/root-6.28.00/interpreter/cling/lib/Interpreter/IncrementalJIT.cpp:572
#17 0x00007fffa2a50208 in cling::IncrementalExecutor::jitInitOrWrapper<void (*)(void*)> (fun=<synthetic pointer>: <optimized out>, funcname=..., this=0x11efca180) at /usr/include/c++/8/bits/unique_ptr.h:345
#18 cling::IncrementalExecutor::executeWrapper (this=0x11efca180, function=..., returnValue=0x7fffff157520) at /builddir/build/BUILD/root-6.28.00/interpreter/cling/lib/Interpreter/IncrementalExecutor.cpp:208
#19 0x00007fffa299b964 in cling::Interpreter::RunFunction (this=0x11ef4d780, FD=<optimized out>, res=res
entry=0x7fffff157520) at /usr/include/c++/8/bits/basic_string.h:2306
#20 0x00007fffa29a04d4 in cling::Interpreter::EvaluateInternal (this=<optimized out>, input=..., CO=..., V=0x7fffff157520, wrapPoint=<optimized out>) at /builddir/build/BUILD/root-6.28.00/interpreter/cling/include/cling/Interpreter/Transaction.h:498
#21 0x00007fffa2aecf60 in cling::MetaSema::<lambda(cling::Transaction*, std::__cxx11::string, llvm::StringRef, cling::Value*)>::operator() (__closure=<synthetic pointer>, ret=0x7fffff157520, args=..., func="rf104_classfactory", T=<optimized out>) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/include/llvm/Support/raw_ostream.h:643
#22 cling::MetaSema::actOnxCommand (this=0x11f2601d0, file=..., args=..., result=0x7fffff157520) at /builddir/build/BUILD/root-6.28.00/interpreter/cling/lib/MetaProcessor/MetaSema.cpp:158
#23 0x00007fffa2afed24 in cling::MetaParser::isXCommand (this=this
entry=0x7fffff1572b0, actionResult=
0x7fffff157260: cling::MetaSema::AR_Success, resultValue=resultValue
entry=0x7fffff157520) at /usr/include/c++/8/bits/basic_string.h:2306
#24 0x00007fffa2affe20 in cling::MetaParser::isCommand (this=0x7fffff1572b0, actionResult=
0x7fffff157260: cling::MetaSema::AR_Success, resultValue=0x7fffff157520) at /builddir/build/BUILD/root-6.28.00/interpreter/cling/lib/MetaProcessor/MetaParser.cpp:118
#25 0x00007fffa2ae4044 in cling::MetaProcessor::process (this=0x11f260fc0, input_line=..., compRes=
0x7fffff15750c: cling::Interpreter::kSuccess, result=0x7fffff157520, disableValuePrinting=<optimized out>) at /usr/include/c++/8/bits/unique_ptr.h:345
#26 0x00007fffa282b4b0 in HandleInterpreterException (metaProcessor=0x11f260fc0, input_line=0x11efcdaa0 ".X  /builddir/build/BUILD/root-6.28.00/tutorials/roofit/rf104_classfactory.C", compRes=
0x7fffff15750c: cling::Interpreter::kSuccess, result=result
entry=0x7fffff157520) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/include/llvm/ADT/StringRef.h:86
===========================================================
pure virtual method called
terminate called without an active exception

There are failures running a compiles unit test (gtest):

 314/1192 Test  #204: gtest-roofit-RDataFrameHelpers-test-testActionHelpers ...............***Failed  111.03 sec
Running main() from gtest_main.cc
Note: Google Test filter = -RCsvDS.Remote:RRawFile.Remote:RSqliteDS.Davix:TFile.ReadWithoutGlobalRegistrationWeb:TFile.ReadWithoutGlobalRegistrationNet:RNTuple.TClassEBO
[==========] Running 2 tests from 1 test case.
[----------] Global test environment set-up.
[----------] 2 tests from RooAbsDataHelper
[ RUN      ] RooAbsDataHelper.MTConstruction
 *** Break *** segmentation violation
===========================================================
There was a crash (#5 0x00007fffa13ac284 in SigHandler (sig=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:395).
This is the entire stack trace of all threads:
===========================================================
#0  0x00007fffa08f2f04 in waitpid () from /lib64/glibc-hwcaps/power9/libc-2.28.so
#1  0x00007fffa085a38c in do_system () from /lib64/glibc-hwcaps/power9/libc-2.28.so
#2  0x00007fffa13a9044 in TUnixSystem::Exec (shellcmd=<optimized out>, this=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:2104
#3  TUnixSystem::StackTrace (this=0x173f45850) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:2395
#4  0x00007fffa13ac1c8 in TUnixSystem::DispatchSignals (this=0x173f45850, sig=kSigSegmentationViolation) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:3615
#5  0x00007fffa13ac284 in SigHandler (sig=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:395
#6  0x00007fffa13a308c in sighandler (sig=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:3586
#7  <signal handler called>
===========================================================
The lines below might hint at the cause of the crash. If you see question
marks as part of the stack trace, try to recompile with debugging information
enabled and export CLING_DEBUG=1 environment variable before running.
You may get help by asking at the ROOT forum https://root.cern/forum
Only if you are really convinced it is a bug in ROOT then please submit a
report at https://root.cern/bugs Please post the ENTIRE stack trace
from above as an attachment in addition to anything else
that might help us fixing this issue.
===========================================================
#8  llvm::Expected<llvm::JITEvaluatedSymbol>::Expected<llvm::JITEvaluatedSymbol> (Val=..., this=0x7fffd51c79a0) at /usr/include/c++/8/new:169
#9  llvm::orc::ExecutionSession::lookup (this=0x1740989b0, SearchOrder=std::vector of length 1, capacity 1 = {...}, Name=..., RequiredState=<optimized out>) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/lib/ExecutionEngine/Orc/Core.cpp:2040
#10 0x00007fff9ba04d00 in llvm::orc::LLJIT::lookupLinkerMangled (this=<optimized out>, JD=..., Name=...) at /usr/include/c++/8/bits/atomic_base.h:295
#11 0x00007fff9a459050 in llvm::orc::LLJIT::lookupLinkerMangled (Name=..., JD=..., this=0x174098770) at /usr/include/c++/8/ppc64le-redhat-linux/bits/gthr-default.h:778
#12 llvm::orc::LLJIT::lookup (UnmangledName=..., JD=..., this=0x174098770) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/include/llvm/ExecutionEngine/Orc/LLJIT.h:132
#13 llvm::orc::LLJIT::lookup (UnmangledName=..., this=0x174098770) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/include/llvm/ExecutionEngine/Orc/LLJIT.h:137
#14 cling::IncrementalJIT::getSymbolAddress (this=0x17404b400, Name=..., IncludeHostSymbols=<optimized out>) at /builddir/build/BUILD/root-6.28.00/interpreter/cling/lib/Interpreter/IncrementalJIT.cpp:572
#15 0x00007fff9a450208 in cling::IncrementalExecutor::jitInitOrWrapper<void (*)(void*)> (fun=<synthetic pointer>: <optimized out>, funcname=..., this=0x174094f70) at /usr/include/c++/8/bits/unique_ptr.h:345
#16 cling::IncrementalExecutor::executeWrapper (this=0x174094f70, function=..., returnValue=0x7fffd51c7cb0) at /builddir/build/BUILD/root-6.28.00/interpreter/cling/lib/Interpreter/IncrementalExecutor.cpp:208
#17 0x00007fff9a39b964 in cling::Interpreter::RunFunction (this=0x1740192b0, FD=<optimized out>, res=res
entry=0x7fffd51c7cb0) at /usr/include/c++/8/bits/basic_string.h:2306
#18 0x00007fff9a3a04d4 in cling::Interpreter::EvaluateInternal (this=<optimized out>, input=..., CO=..., V=0x7fffd51c7cb0, wrapPoint=<optimized out>) at /builddir/build/BUILD/root-6.28.00/interpreter/cling/include/cling/Interpreter/Transaction.h:498
#19 0x00007fff9a24178c in TCling::Calc (this=0x174039100, line=0x174e16fa0 "ROOT::Internal::RDF::CallBuildAction<ROOT::Internal::RDF::ActionTags::Mean, double>(reinterpret_cast<std::shared_ptr<ROOT::Detail::RDF::RNodeBase>*>(0x174b8a810), new const char*[1]{"x"}, 1, 4, reinte"..., error=0x7fffd51c7de8) at /usr/include/c++/8/bits/basic_string.h:256
#20 0x00007fffa32551c8 in ROOT::Internal::RDF::<lambda(const string&)>::operator() (__closure=<synthetic pointer>, __closure=<synthetic pointer>, codeSlice="ROOT::Internal::RDF::CallBuildAction<ROOT::Internal::RDF::ActionTags::Mean, double>(reinterpret_cast<std::shared_ptr<ROOT::Detail::RDF::RNodeBase>*>(0x174b8a810), new const char*[1]{"x"}, 1, 4, reinte"...) at /usr/include/c++/8/bits/basic_string.h:2294
#21 ROOT::Internal::RDF::InterpreterCalc (code="ROOT::Internal::RDF::CallBuildAction<ROOT::Internal::RDF::ActionTags::Mean, double>(reinterpret_cast<std::shared_ptr<ROOT::Detail::RDF::RNodeBase>*>(0x174b8a810), new const char*[1]{"x"}, 1, 4, reinte"..., context="RLoopManager::Run") at /builddir/build/BUILD/root-6.28.00/tree/dataframe/src/RDFUtils.cxx:357
#22 0x00007fffa326c338 in ROOT::Detail::RDF::RLoopManager::Jit (this=<optimized out>) at /usr/include/c++/8/ext/new_allocator.h:79
#23 0x00007fffa3276608 in ROOT::Detail::RDF::RLoopManager::Run (this=0x173fa4a90, jit=<optimized out>) at /builddir/build/BUILD/root-6.28.00/tree/dataframe/src/RLoopManager.cxx:826
#24 0x000000013a4e034c in ROOT::RDF::RResultPtr<double>::TriggerRun (this=0x7fffd51c8a38) at /builddir/build/BUILD/root-6.28.00/tree/dataframe/inc/ROOT/RResultPtr.hxx:360
#25 ROOT::RDF::RResultPtr<double>::Get (this=0x7fffd51c8a38) at /builddir/build/BUILD/root-6.28.00/tree/dataframe/inc/ROOT/RResultPtr.hxx:154
#26 ROOT::RDF::RResultPtr<double>::GetValue (this=0x7fffd51c8a38) at /builddir/build/BUILD/root-6.28.00/tree/dataframe/inc/ROOT/RResultPtr.hxx:196
#27 RooAbsDataHelper_MTConstruction_Test::TestBody (this=<optimized out>) at /builddir/build/BUILD/root-6.28.00/roofit/RDataFrameHelpers/test/testActionHelpers.cxx:66
#28 0x00007fffa3390cbc in void testing::internal::HandleExceptionsInMethodIfSupported<testing::Test, void>(testing::Test*, void (testing::Test::*)(), char const*) () from /lib64/libgtest.so.1.8.0
#29 0x00007fffa3381374 in testing::Test::Run() () from /lib64/libgtest.so.1.8.0
#30 0x00007fffa3381578 in testing::TestInfo::Run() () from /lib64/libgtest.so.1.8.0
#31 0x00007fffa33816b4 in testing::TestCase::Run() () from /lib64/libgtest.so.1.8.0
#32 0x00007fffa3381da8 in testing::internal::UnitTestImpl::RunAllTests() () from /lib64/libgtest.so.1.8.0
#33 0x00007fffa3382004 in testing::UnitTest::Run() () from /lib64/libgtest.so.1.8.0
#34 0x00007fffa3310988 in main () from /lib64/libgtest_main.so.1.8.0
#35 0x00007fffa0829f5c in generic_start_main.isra () from /lib64/glibc-hwcaps/power9/libc-2.28.so
#36 0x00007fffa082a0f4 in __libc_start_main () from /lib64/glibc-hwcaps/power9/libc-2.28.so
#37 0x0000000000000000 in ?? ()
===========================================================
pure virtual method called
terminate called without an active exception

There are failures running from Python:

 427/1192 Test  #397: pyunittests-dataframe-histograms ....................................***Failed  191.35 sec
test_histo1D (dataframe_histograms.HistogramsFromRDF) ...  *** Break *** segmentation violation
===========================================================
There was a crash (#8 0x00007fff7c7ac284 in SigHandler (sig=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:395).
This is the entire stack trace of all threads:
===========================================================
#0  0x00007fff89ef2f04 in waitpid () from /lib64/glibc-hwcaps/power9/libc-2.28.so
#1  0x00007fff89e5a38c in do_system () from /lib64/glibc-hwcaps/power9/libc-2.28.so
#2  0x00007fff8ac49ad8 in system_compat () from /lib64/glibc-hwcaps/power9/libpthread-2.28.so
#3  0x00007fff7c7a9044 in TUnixSystem::Exec (shellcmd=<optimized out>, this=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:2104
#4  TUnixSystem::StackTrace (this=0x16573fa50) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:2395
#5  0x00007fff7ca8eefc in (anonymous namespace)::do_trace (sig=1) at /builddir/build/BUILD/root-6.28.00/bindings/pyroot/cppyy/cppyy-backend/clingwrapper/src/clingwrapper.cxx:182
#6  (anonymous namespace)::TExceptionHandlerImp::HandleException (this=<optimized out>, sig=<optimized out>) at /builddir/build/BUILD/root-6.28.00/bindings/pyroot/cppyy/cppyy-backend/clingwrapper/src/clingwrapper.cxx:195
#7  0x00007fff7c7ac09c in TUnixSystem::DispatchSignals (this=0x16573fa50, sig=kSigSegmentationViolation) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:3610
#8  0x00007fff7c7ac284 in SigHandler (sig=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:395
#9  0x00007fff7c7a308c in sighandler (sig=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/unix/src/TUnixSystem.cxx:3586
#10 <signal handler called>
===========================================================
The lines below might hint at the cause of the crash. If you see question
marks as part of the stack trace, try to recompile with debugging information
enabled and export CLING_DEBUG=1 environment variable before running.
You may get help by asking at the ROOT forum https://root.cern/forum
Only if you are really convinced it is a bug in ROOT then please submit a
report at https://root.cern/bugs Please post the ENTIRE stack trace
from above as an attachment in addition to anything else
that might help us fixing this issue.
===========================================================
#11 llvm::Expected<llvm::JITEvaluatedSymbol>::Expected<llvm::JITEvaluatedSymbol> (Val=..., this=0x7fffc4480180) at /usr/include/c++/8/new:169
#12 llvm::orc::ExecutionSession::lookup (this=0x1656ebc10, SearchOrder=std::vector of length 1, capacity 1 = {...}, Name=..., RequiredState=<optimized out>) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/lib/ExecutionEngine/Orc/Core.cpp:2040
#13 0x00007fff78004d00 in llvm::orc::LLJIT::lookupLinkerMangled (this=<optimized out>, JD=..., Name=...) at /usr/include/c++/8/bits/atomic_base.h:295
#14 0x00007fff76a59050 in llvm::orc::LLJIT::lookupLinkerMangled (Name=..., JD=..., this=0x16584c2e0) at /usr/include/c++/8/ppc64le-redhat-linux/bits/gthr-default.h:778
#15 llvm::orc::LLJIT::lookup (UnmangledName=..., JD=..., this=0x16584c2e0) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/include/llvm/ExecutionEngine/Orc/LLJIT.h:132
#16 llvm::orc::LLJIT::lookup (UnmangledName=..., this=0x16584c2e0) at /builddir/build/BUILD/root-6.28.00/interpreter/llvm/src/include/llvm/ExecutionEngine/Orc/LLJIT.h:137
#17 cling::IncrementalJIT::getSymbolAddress (this=0x1657ff820, Name=..., IncludeHostSymbols=<optimized out>) at /builddir/build/BUILD/root-6.28.00/interpreter/cling/lib/Interpreter/IncrementalJIT.cpp:572
#18 0x00007fff76a50690 in cling::IncrementalExecutor::getPointerToGlobalFromJIT (this=0x165848f30, name=...) at /usr/include/c++/8/bits/unique_ptr.h:345
#19 0x00007fff7699fe04 in cling::Interpreter::compileFunction (this=0x165715770, name=..., code=..., ifUnique=<optimized out>, withAccessControl=<optimized out>) at /usr/include/c++/8/bits/unique_ptr.h:345
#20 0x00007fff768fea38 in TClingCallFunc::compile_wrapper (this=<optimized out>, wrapper_name=..., wrapper=..., withAccessControl=<optimized out>) at /usr/include/c++/8/bits/basic_string.h:2306
#21 0x00007fff76908a68 in TClingCallFunc::make_wrapper (this=0x16b07b660) at /builddir/build/BUILD/root-6.28.00/core/metacling/src/TClingCallFunc.cxx:1006
#22 0x00007fff76908e78 in TClingCallFunc::IFacePtr (this=0x16b07b660) at /builddir/build/BUILD/root-6.28.00/core/metacling/src/TClingCallFunc.cxx:2004
#23 0x00007fff7682c3bc in TCling::CallFunc_IFacePtr (this=<optimized out>, func=<optimized out>) at /builddir/build/BUILD/root-6.28.00/core/metacling/src/TCling.cxx:7888
#24 0x00007fff7ca8f81c in GetCallFunc (method=<optimized out>) at /usr/include/c++/8/bits/locale_facets.h:877
#25 WrapperCall (method=6088041216, nargs=2, args_=0x7fffc4480880, self=0x16b1482f0, result=0x16b0b6990) at /builddir/build/BUILD/root-6.28.00/bindings/pyroot/cppyy/cppyy-backend/clingwrapper/src/clingwrapper.cxx:765
#26 0x00007fff7ca90e5c in Cppyy::CallO (method=6088041216, self=0x16b1482f0, nargs=2, args=0x7fffc4480880, result_type=<optimized out>) at /builddir/build/BUILD/root-6.28.00/bindings/pyroot/cppyy/cppyy-backend/clingwrapper/src/clingwrapper.cxx:883
#27 0x00007fff7cb6b8f0 in GILCallO (klass=<optimized out>, ctxt=0x7fffc4480860, self=<optimized out>, method=6088041216) at /builddir/build/BUILD/root-6.28.00/bindings/pyroot/cppyy/CPyCppyy/src/CallContext.h:91
#28 GILCallO (klass=<optimized out>, ctxt=0x7fffc4480860, self=<optimized out>, method=6088041216) at /builddir/build/BUILD/root-6.28.00/bindings/pyroot/cppyy/CPyCppyy/src/Executors.cxx:80
#29 CPyCppyy::(anonymous namespace)::InstanceExecutor::Execute (this=0x167f07840, method=6088041216, self=<optimized out>, ctxt=0x7fffc4480860) at /builddir/build/BUILD/root-6.28.00/bindings/pyroot/cppyy/CPyCppyy/src/Executors.cxx:594
#30 0x00007fff7cb4f480 in CPyCppyy::CPPMethod::ExecuteFast (ctxt=<optimized out>, offset=<optimized out>, self=<optimized out>, this=0x16ae03d30) at /builddir/build/BUILD/root-6.28.00/bindings/pyroot/cppyy/CPyCppyy/src/CPPMethod.cxx:725
#31 CPyCppyy::CPPMethod::Execute (this=0x16ae03d30, self=<optimized out>, offset=<optimized out>, ctxt=<optimized out>) at /builddir/build/BUILD/root-6.28.00/bindings/pyroot/cppyy/CPyCppyy/src/CPPMethod.cxx:725
#32 0x00007fff7cb4fe44 in CPyCppyy::CPPMethod::Call (this=0x16ae03d30, self=
0x7fff6b79ae90: 0x7fff6b533fc0, args=0x7fff7cc54b08, kwds=<optimized out>, ctxt=0x7fffc4480860) at /builddir/build/BUILD/root-6.28.00/bindings/pyroot/cppyy/CPyCppyy/src/CPPMethod.cxx:783
#33 0x00007fff7cb56de8 in CPyCppyy::(anonymous namespace)::mp_call (pymeth=0x7fff6b79ae80, args=0x7fff7cc54b08, kwds=0x7fff7cc60ab0) at /usr/include/c++/8/bits/move.h:74
#34 0x00007fff7cb93498 in CPyCppyy::tpp_call (pytmpl=0x7fff6b53b228, args=0x7fff7cc54b08, kwds=0x7fff7cc60ab0) at /builddir/build/BUILD/root-6.28.00/bindings/pyroot/cppyy/CPyCppyy/src/TemplateProxy.cxx:598
#35 0x00007fff8a3d0fec in _PyObject_FastCallKeywords () from /lib64/libpython3.6m.so.1.0
#36 0x00007fff8a3d1ed4 in call_function () from /lib64/libpython3.6m.so.1.0
#37 0x00007fff8a3d2fb4 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#38 0x00007fff8a39a880 in fast_function () from /lib64/libpython3.6m.so.1.0
#39 0x00007fff8a3d1cb8 in call_function () from /lib64/libpython3.6m.so.1.0
#40 0x00007fff8a3d2fb4 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#41 0x00007fff8a2d1888 in _PyEval_EvalCodeWithName () from /lib64/libpython3.6m.so.1.0
#42 0x00007fff8a2d4888 in _PyFunction_FastCallDict () from /lib64/libpython3.6m.so.1.0
#43 0x00007fff8a2d56a4 in _PyObject_FastCallDict () from /lib64/libpython3.6m.so.1.0
#44 0x00007fff8a2f13e0 in method_call () from /lib64/libpython3.6m.so.1.0
#45 0x00007fff8a2e09b4 in PyObject_Call () from /lib64/libpython3.6m.so.1.0
#46 0x00007fff8a3d56b0 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#47 0x00007fff8a2d1888 in _PyEval_EvalCodeWithName () from /lib64/libpython3.6m.so.1.0
#48 0x00007fff8a2d4448 in _PyFunction_FastCallDict () from /lib64/libpython3.6m.so.1.0
#49 0x00007fff8a2d56a4 in _PyObject_FastCallDict () from /lib64/libpython3.6m.so.1.0
#50 0x00007fff8a2f13e0 in method_call () from /lib64/libpython3.6m.so.1.0
#51 0x00007fff8a2e09b4 in PyObject_Call () from /lib64/libpython3.6m.so.1.0
#52 0x00007fff8a3b4a1c in slot_tp_call () from /lib64/libpython3.6m.so.1.0
#53 0x00007fff8a3d0fec in _PyObject_FastCallKeywords () from /lib64/libpython3.6m.so.1.0
#54 0x00007fff8a3d1ed4 in call_function () from /lib64/libpython3.6m.so.1.0
#55 0x00007fff8a3d2fb4 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#56 0x00007fff8a2d1888 in _PyEval_EvalCodeWithName () from /lib64/libpython3.6m.so.1.0
#57 0x00007fff8a2d4888 in _PyFunction_FastCallDict () from /lib64/libpython3.6m.so.1.0
#58 0x00007fff8a2d56a4 in _PyObject_FastCallDict () from /lib64/libpython3.6m.so.1.0
#59 0x00007fff8a2f13e0 in method_call () from /lib64/libpython3.6m.so.1.0
#60 0x00007fff8a2e09b4 in PyObject_Call () from /lib64/libpython3.6m.so.1.0
#61 0x00007fff8a3d56b0 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#62 0x00007fff8a2d1888 in _PyEval_EvalCodeWithName () from /lib64/libpython3.6m.so.1.0
#63 0x00007fff8a2d4448 in _PyFunction_FastCallDict () from /lib64/libpython3.6m.so.1.0
#64 0x00007fff8a2d56a4 in _PyObject_FastCallDict () from /lib64/libpython3.6m.so.1.0
#65 0x00007fff8a2f13e0 in method_call () from /lib64/libpython3.6m.so.1.0
#66 0x00007fff8a2e09b4 in PyObject_Call () from /lib64/libpython3.6m.so.1.0
#67 0x00007fff8a3b4a1c in slot_tp_call () from /lib64/libpython3.6m.so.1.0
#68 0x00007fff8a3d0fec in _PyObject_FastCallKeywords () from /lib64/libpython3.6m.so.1.0
#69 0x00007fff8a3d1ed4 in call_function () from /lib64/libpython3.6m.so.1.0
#70 0x00007fff8a3d2fb4 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#71 0x00007fff8a2d1888 in _PyEval_EvalCodeWithName () from /lib64/libpython3.6m.so.1.0
#72 0x00007fff8a2d4888 in _PyFunction_FastCallDict () from /lib64/libpython3.6m.so.1.0
#73 0x00007fff8a2d56a4 in _PyObject_FastCallDict () from /lib64/libpython3.6m.so.1.0
#74 0x00007fff8a2f13e0 in method_call () from /lib64/libpython3.6m.so.1.0
#75 0x00007fff8a2e09b4 in PyObject_Call () from /lib64/libpython3.6m.so.1.0
#76 0x00007fff8a3d56b0 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#77 0x00007fff8a2d1888 in _PyEval_EvalCodeWithName () from /lib64/libpython3.6m.so.1.0
#78 0x00007fff8a2d4448 in _PyFunction_FastCallDict () from /lib64/libpython3.6m.so.1.0
#79 0x00007fff8a2d56a4 in _PyObject_FastCallDict () from /lib64/libpython3.6m.so.1.0
#80 0x00007fff8a2f13e0 in method_call () from /lib64/libpython3.6m.so.1.0
#81 0x00007fff8a2e09b4 in PyObject_Call () from /lib64/libpython3.6m.so.1.0
#82 0x00007fff8a3b4a1c in slot_tp_call () from /lib64/libpython3.6m.so.1.0
#83 0x00007fff8a3d0fec in _PyObject_FastCallKeywords () from /lib64/libpython3.6m.so.1.0
#84 0x00007fff8a3d1ed4 in call_function () from /lib64/libpython3.6m.so.1.0
#85 0x00007fff8a3d2fb4 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#86 0x00007fff8a2d1888 in _PyEval_EvalCodeWithName () from /lib64/libpython3.6m.so.1.0
#87 0x00007fff8a2d4888 in _PyFunction_FastCallDict () from /lib64/libpython3.6m.so.1.0
#88 0x00007fff8a2d56a4 in _PyObject_FastCallDict () from /lib64/libpython3.6m.so.1.0
#89 0x00007fff8a2f13e0 in method_call () from /lib64/libpython3.6m.so.1.0
#90 0x00007fff8a2e09b4 in PyObject_Call () from /lib64/libpython3.6m.so.1.0
#91 0x00007fff8a3d56b0 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#92 0x00007fff8a2d1888 in _PyEval_EvalCodeWithName () from /lib64/libpython3.6m.so.1.0
#93 0x00007fff8a2d4448 in _PyFunction_FastCallDict () from /lib64/libpython3.6m.so.1.0
#94 0x00007fff8a2d56a4 in _PyObject_FastCallDict () from /lib64/libpython3.6m.so.1.0
#95 0x00007fff8a2f13e0 in method_call () from /lib64/libpython3.6m.so.1.0
#96 0x00007fff8a2e09b4 in PyObject_Call () from /lib64/libpython3.6m.so.1.0
#97 0x00007fff8a3b4a1c in slot_tp_call () from /lib64/libpython3.6m.so.1.0
#98 0x00007fff8a3d0fec in _PyObject_FastCallKeywords () from /lib64/libpython3.6m.so.1.0
#99 0x00007fff8a3d1ed4 in call_function () from /lib64/libpython3.6m.so.1.0
#100 0x00007fff8a3d2fb4 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#101 0x00007fff8a39a880 in fast_function () from /lib64/libpython3.6m.so.1.0
#102 0x00007fff8a3d1cb8 in call_function () from /lib64/libpython3.6m.so.1.0
#103 0x00007fff8a3d2fb4 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#104 0x00007fff8a39a880 in fast_function () from /lib64/libpython3.6m.so.1.0
#105 0x00007fff8a3d1cb8 in call_function () from /lib64/libpython3.6m.so.1.0
#106 0x00007fff8a3d2fb4 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#107 0x00007fff8a2d1f94 in _PyEval_EvalCodeWithName () from /lib64/libpython3.6m.so.1.0
#108 0x00007fff8a2d4888 in _PyFunction_FastCallDict () from /lib64/libpython3.6m.so.1.0
#109 0x00007fff8a2d56a4 in _PyObject_FastCallDict () from /lib64/libpython3.6m.so.1.0
#110 0x00007fff8a2f13e0 in method_call () from /lib64/libpython3.6m.so.1.0
#111 0x00007fff8a3b3868 in slot_tp_init () from /lib64/libpython3.6m.so.1.0
#112 0x00007fff8a3d0e90 in _PyObject_FastCallKeywords () from /lib64/libpython3.6m.so.1.0
#113 0x00007fff8a3d1ed4 in call_function () from /lib64/libpython3.6m.so.1.0
#114 0x00007fff8a3d3e2c in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#115 0x00007fff8a2d1888 in _PyEval_EvalCodeWithName () from /lib64/libpython3.6m.so.1.0
#116 0x00007fff8a2d3e70 in PyEval_EvalCode () from /lib64/libpython3.6m.so.1.0
#117 0x00007fff8a4a8f5c in builtin_exec () from /lib64/libpython3.6m.so.1.0
#118 0x00007fff8a3d1988 in call_function () from /lib64/libpython3.6m.so.1.0
#119 0x00007fff8a3d2fb4 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#120 0x00007fff8a2d1888 in _PyEval_EvalCodeWithName () from /lib64/libpython3.6m.so.1.0
#121 0x00007fff8a39ac20 in fast_function () from /lib64/libpython3.6m.so.1.0
#122 0x00007fff8a3d1cb8 in call_function () from /lib64/libpython3.6m.so.1.0
#123 0x00007fff8a3d2fb4 in _PyEval_EvalFrameDefault () from /lib64/libpython3.6m.so.1.0
#124 0x00007fff8a2d1888 in _PyEval_EvalCodeWithName () from /lib64/libpython3.6m.so.1.0
#125 0x00007fff8a3d0140 in function_call () from /lib64/libpython3.6m.so.1.0
#126 0x00007fff8a2e09b4 in PyObject_Call () from /lib64/libpython3.6m.so.1.0
#127 0x00007fff8a4ac6ac in RunModule () from /lib64/libpython3.6m.so.1.0
#128 0x00007fff8a4adf08 in Py_Main () from /lib64/libpython3.6m.so.1.0
#129 0x000000012fd20ebc in main ()
===========================================================
pure virtual method called
terminate called without an active exception
@ellert ellert added the bug label Feb 23, 2023
@hahnjo hahnjo self-assigned this Mar 6, 2023
@hahnjo hahnjo changed the title Build and test failures on RHEL+EPEL 8 ppc64le ( Build and test failures on RHEL+EPEL 8 ppc64le Aug 15, 2023
@dpiparo dpiparo assigned dpiparo and unassigned Axel-Naumann Mar 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants