Hi
I have built root 6.04.00 on one of our Linux servers running SLF 6.4 (64bit). When I run the root executable I get the following errors
Error in TSystem::ExpandFileName : input: $ISDC_ENV/lib/libCling, output: $ISDC_ENV/lib/libCling
| Welcome to ROOT 6.04/00 root.cern.ch |
| © 1995-2014, The ROOT Team |
| Built for linuxx8664gcc |
| From tag v6-04-00, 2 June 2015 |
Try ‘.help’, ‘.demo’, ‘.license’, ‘.credits’, ‘.quit’/’.q’
Error in TSystem::ExpandFileName : input: $ISDC_ENV/lib/libMathCore, output: $ISDC_ENV/lib/libMathCore
I think the symbol ISDC_ENV was part of the old astroroot package from the University of Geneva (which I used way back when root did not have FITS support) - you would assign ISDC_ENV to point to ROOTSYS. As far as I can tell I do not have this symbol defined anywhere in my environment but something in root thinks it should be looking there. I don’t know if this error is fatal but anyway it is annoying. Does anyone have any clues about why it might be doing this and how to make it go away?
Thanks very much
Liz Buckley-Geer
mato
July 21, 2015, 10:15am
2
How did you build ROOT? Can you tell us the configure command or the CMake command? I am sure $ISDC_ENV will come from there.
Here is my configure command
./configure
"–with-cfitsio-incdir=/cvmfs/des.opensciencegrid.org/2015_Q2/eeups/SL6/eups/packages
/Linux64/cfitsio/3.370+0/include"
"–with-cfitsio-libdir=/cvmfs/des.opensciencegrid.org/2015_Q2/eeups/SL6/eups/packages
/Linux64/cfitsio/3.370+0/lib"
"–with-python-incdir=/cvmfs/des.opensciencegrid.org/2015_Q2/eeups/SL6/eups/packages/
Linux64/python/2.7.6+2/include/python2.7"
"–with-python-libdir=/cvmfs/des.opensciencegrid.org/2015_Q2/eeups/SL6/eups/packages/
Linux64/python/2.7.6+2/lib"
"–with-cc=/opt/rh/devtoolset-3/root/usr/bin/gcc"
"–with-cxx=/opt/rh/devtoolset-3/root/usr/bin/g++"
"–enable-roofit"
"–with-ld=/opt/rh/devtoolset-3/root/usr/bin/g++"
Liz
mato
July 22, 2015, 6:48am
4
Hi. I have no idea from where this ISDC_ENV can come from. It is nowhere in ROOT itself. Can you for example do
to see the value of ROOTLIBDIR.
Solved it. After some poking around in my home area I noticed that I had a .rootrc file lying around from 2009 which contains
<des40.fnal.gov > cat .rootrc
Path used by dynamic loader to find shared libraries
Unix.*.Root.DynamicPath: .:$ISDC_ENV/lib:$(ROOTSYS)/lib
left over from when I was using the astroroot package to get FITS support. I remove the reference to ISDC_ENV and now the error has gone away.
Thanks Liz