Cannot build ROOT from source

Dear all,
I’m new in ROOT. I have built the source with some following commands

# The latest stable branch gets updated automatically on each release.
# You may update your local copy by issuing a `git pull` command from within `root_src/`.
$ git clone --branch latest-stable --depth=1 https://github.com/root-project/root.git root_src
$ mkdir root_build root_install && cd root_build
$ cmake -DCMAKE_INSTALL_PREFIX=../root_install ../root_src # && check cmake configuration output for warnings or errors
$ cmake --build . -- install -j4 # if you have 4 cores available for compilation
$ source ../root_install/bin/thisroot.sh # or thisroot.{fish,csh}

But It always show the error and stop at 28% processing.

Welcome to the ROOT forum.

This screen copy does not tell a lot.
Can you copy/paste here the full log you get? in particular, what gives the first cmake command?

Also try:

cmake --build . -- install -j1