Installing v5 on OSX Yosemite

Hi

I want to install the root v5 for musrfit.
so I tried to build the root.
I typed

$ git clone root.cern.ch/git/root.git
$ git tag -l
$ git checkout -b v5-34-32 v5-34-32
$ ./configure --gminimal --enable-asimage --enable-mathmore --enable-minuit2 --enable-xml
$make -j2

and the Build was succeed. but there are some errors.
the messages are like that.

.
.
.
-pthread -DUSE_ROOT_ERROR -o math/mathcore/src/AdaptiveIntegratorMultiDim.o -c /Users/galch/Applications/root/math/mathcore/src/AdaptiveIntegratorMultiDim.cxx
.
.
.
-pthread -I/usr/local/include -DUSE_ROOT_ERROR -o math/mathmore/src/GSLDerivator.o -c /Users/galch/Applications/root/math/mathmore/src/GSLDerivator.cxx
.
.
.
-pthread -DWARNINGMSG -DUSE_ROOT_ERROR -D__cplusplus – /Users/galch/Applications/root/math/minuit2/src/FumiliBuilder.cxx
.
.
.
-pthread -I/usr/local/include -DUSE_ROOT_ERROR -I. -I/Users/galch/Applications/root/cint/cint/inc -o math/mathmore/src/G__MathMore.o -c math/mathmore/src/G__MathMore.cxx
.
.
.

I think maybe mathcore, mathmore, minuit2 were not built successfully.
How can I solve the problem?

You don’t show any error messages (just some pieces of compilation lines which look fine to me).
Try to run:
root-config --features
and see if it returns “mathmore” and “minuit2” (among others).
BTW. A better way to “configure” ROOT would be:
./configure --enable-soversion --all