I use the Debian system, but I was able to complete the compilation of thrift using the following command.
$ sudo ln -s /usr/lib/libboost_unit_test_framework.a /usr/local/lib/libboost_unit_test_framework.a
The problem was that the following http://thrift.apache.org/docs/BuildingFromSource/ command for configuration did not affect one of the libraries, and it looked in /usr/lib/local instead of /usr/local .
$ ./configure --with-boost=/usr/local
This first command creates a symbolic link so that it can be accessed in any way.
source share