Fork me on GitHub

Opened 14 years ago

Closed 12 years ago

#30 closed archive (fixed)

gSystem->load("libUtilities")

Reported by: Xavier Rouby Owned by:
Priority: minor Milestone:
Component: Delphes code Version:
Keywords: Cc:

Description

pas moyen de faire un gSystem->load("libUtilities") dans root (mail d'Eric Conte, 23 mars 2010).

root [2] gSystem->Load("libUtilities");
dlopen error: /home/rouby/documents/Delphes/code/svn/trunk/lib/libUtilities.so: undefined symbol: _ZN12TMatrixTBaseIfE4DrawEPKc
Load Error: Failed to load Dynamic link library /home/rouby/documents/Delphes/code/svn/trunk/lib/libUtilities.so
* Interpreter error recovered *

Change History (1)

comment:1 by Pavel Demin, 12 years ago

Resolution: fixed
Status: newclosed

You need to load ROOT's libEG before loading libUtilities:

gSystem->Load("libEG");
gSystem->Load("libUtilities");
Note: See TracTickets for help on using tickets.