Hello, my dear friends!
I built root on my machine.
My mistake was this/next: i did not set “Build Prerequisites” from this page: https://root.cern.ch/build-prerequisites
ROOT built after installation this packages for Ubuntu:
Use sudo apt-get install _package_
or use the graphical “Synaptic Package Manager” program.
Required packages:
sudo apt-get install git dpkg-dev cmake g++ gcc binutils libx11-dev libxpm-dev
libxft-dev libxext-dev
Optional packages:
sudo apt-get install gfortran libssl-dev libpcre3-dev
xlibmesa-glu-dev libglew1.5-dev libftgl-dev
libmysqlclient-dev libfftw3-dev libcfitsio-dev
graphviz-dev libavahi-compat-libdnssd-dev
libldap2-dev python-dev libxml2-dev libkrb5-dev
libgsl0-dev libqt4-dev
After that i run this command:
mkdir build_dir && cd build_dir
cmake /path/to/root/source/code
cmake --build . – -j4
and ROOT built!
Thank you very mach!