diff --git a/containers/jug/dev.Dockerfile b/containers/jug/dev.Dockerfile index 9d0e67a8bdb55dcd11528cf705a64da538603182..1f5a29c36f31dde21b348d82d47173bbb73da813 100644 --- a/containers/jug/dev.Dockerfile +++ b/containers/jug/dev.Dockerfile @@ -193,6 +193,15 @@ RUN find -L /usr/local/* \ ## and links therin for more info RUN strip --remove-section=.note.ABI-tag /usr/local/lib/libQt5Core.so +## Address Issue #72 +## missing precompiled headers for cppyy due to missing symlink in root +## install (should really be addressed by ROOT spack package) +RUN cd /opt/spack-environment && spack env activate . \ + && if [ ! -e $(spack location -i root)/lib/cppyy_backend/etc ]; then \ + ln -sf $(spack location -i root)/etc \ + $(spack location -i root)/lib/cppyy_backend/etc; \ + fi + RUN spack debug report \ | sed "s/^/ - /" | sed "s/\* \*\*//" | sed "s/\*\*//" \ >> /etc/jug_info \