Using ROOT with C++14 at lxplus

Dear colleagues,

are there any way to run root using C++14 at lxplus? Or the only way is to cmake it from scratch for myself at my directory?
Thanks,
Sergey!

You can use the LCG set of packages, which includes ROOT 6.08/02 made with gcc 6.2

$ source /cvmfs/sft.cern.ch/lcg/views/LCG_87/x86_64-slc6-gcc62-opt/setup.csh
$ root-config --cflags
-pthread -std=c++1y -m64 -I/cvmfs/sft.cern.ch/lcg/releases/ROOT/6.08.02-99084/x86_64-slc6-gcc62-opt/include
$ gcc --version
gcc (GCC) 6.2.0
Copyright (C) 2016 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

-std=c++1y is equivalent to c++14.
Cheers,
Pere