compilation issue on lxplus
I've install Corry on my lxplus cloning the master branch from gitlab. During the installation procedure I found two issue
-
cmake 3 is required, so the cmake command failed. To solve this issues I sourced cmake3 on lxplus with the command:
source /cvmfs/cms.cern.ch/slc7_amd64_gcc700/external/cmake/3.10.2/etc/profile.d/init.sh to get it. -
sourcing
etc/setup_lxplus.shthe system told me that it didn't find the folder../gitlab-ci.d. The problem was inside the setup file, with the stringsource $ABSOLUTE_PATH/../.gitlab-ci.d/init_x86_64.shwhich tries to link to a folder ../.gitlab-ci.d that there's not inside the branch downloaded from git. I've fixed this issue by replacing that string inetc/setup_lxplus.shfile with this one:source $ABSOLUTE_PATH/../.gitlab/ci/init_x86_64.sh
cheers Leonardo