j-reher / bossdocker

Docker container to run BOSS in a development environment
GNU General Public License v3.0
0 stars 0 forks source link

Install missing libraries #130

Closed j-reher closed 2 years ago

j-reher commented 2 years ago

Trying to compile my Ana code on BOSS 7.0.9.p01 gives me missing libs:

/usr/bin/ld: cannot find -lXpm
/usr/bin/ld: cannot find -lXi

The fix is a line in the Dockerfile:

yum -y install libXi-devel libXpm-devel
j-reher commented 2 years ago

Same issue with 7.0.5, 7.0.6, 7.0.8.p01. Why did this work before?!

j-reher commented 2 years ago

These libraries are being installed in the base image... Why are they not there in the derived one?

EDIT: Not quite -- The base image has libXpm and libXi, but not the corresponding libXpm-devel and libXi-devel... Still makes no sense that this wasn't an issue before but is now?