root/root-core-base-test.patch
Mattias Ellert 7add16520d Update to 6.24.08
Drop patches accepted upstream:
  root-fix-ppc64le-compilation-with-gcc-10.patch
  root-ppc-codemodel.patch
  root-ppc-segfault-fix.patch
Drop the doxygen generated root-doc package (doxygen runs out of memory)
Backport python 3.11 fixes from upstream
Various test fixes - patches from the rawhide build
Don't use yuicompressor on Fedora (Java no longer available on ix86)
Backport locking of gInterpreterMutex in TClingClassInfo::IsEnum
2022-10-22 19:04:17 +02:00

31 lines
1.3 KiB
Diff

From 12d52a60629e1639ced23a1919bd85628d9135ea Mon Sep 17 00:00:00 2001
From: Mattias Ellert <mattias.ellert@physics.uu.se>
Date: Sun, 3 Apr 2022 23:23:00 +0200
Subject: [PATCH] Fix library link order
Fixes undefined references when linking CoreBaseTests
../../../lib/libCling.so.6.26.00: undefined reference to `TMemFile::TMemFile(char const*, TMemFile::ZeroCopyView_t const&)'
../../../lib/libCling.so.6.26.00: undefined reference to `TFile::TFile(char const*, char const*, char const*, int)'
../../../lib/libCling.so.6.26.00: undefined reference to `TFile::~TFile()'
../../../lib/libCling.so.6.26.00: undefined reference to `TStreamerInfo::TStreamerInfo()'
../../../lib/libCling.so.6.26.00: undefined reference to `TMemFile::~TMemFile()'
---
core/base/test/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/base/test/CMakeLists.txt b/core/base/test/CMakeLists.txt
index 4b08cb0390..9b52e83405 100644
--- a/core/base/test/CMakeLists.txt
+++ b/core/base/test/CMakeLists.txt
@@ -22,6 +22,6 @@ ROOT_ADD_GTEST(CoreBaseTests
TQObjectTests.cxx
TExceptionHandlerTests.cxx
TStringTest.cxx
- LIBRARIES Core RIO ${extralibs})
+ LIBRARIES ${extralibs} RIO Core)
ROOT_ADD_GTEST(CoreErrorTests TErrorTests.cxx LIBRARIES Core)
--
2.35.1