Skip to content

Commit

Permalink
Fix LD_LIBRARY_PATH setup for sio, podio, edm4hep
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Jun 29, 2022
1 parent b3e1583 commit 298cd51
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ilcsoft/edm4hep.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,5 @@ def postCheckDeps(self):
BaseILC.postCheckDeps(self)

self.env['edm4hep_DIR'] = self.installPath + "/install"
self.envpath["LD_LIBRARY_PATH"].append("$edm4hep_DIR/lib")
self.envpath["LD_LIBRARY_PATH"].append("$edm4hep_DIR/lib64")
3 changes: 3 additions & 0 deletions ilcsoft/podio.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,6 @@ def postCheckDeps(self):
BaseILC.postCheckDeps(self)

self.env['podio_DIR'] = self.installPath + "/install"
self.envpath["LD_LIBRARY_PATH"].append("$podio_DIR/lib")
self.envpath["LD_LIBRARY_PATH"].append("$podio_DIR/lib64")
self.envpath["PYTHONPATH"].append("$podio_DIR/python")
2 changes: 1 addition & 1 deletion ilcsoft/sio.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ def postCheckDeps(self):
if self.installPath != "/usr":
self.envpath["PATH"].append( "$SIO_DIR/bin" )
self.envpath["LD_LIBRARY_PATH"].append( "$SIO_DIR/lib" )

self.envpath["LD_LIBRARY_PATH"].append( "$SIO_DIR/lib64" )

0 comments on commit 298cd51

Please sign in to comment.