Hello, I'm trying to build Thrift 0.12.0 C++ libraries in CentOS 7. I got the source code and the bootstrap.sh script ran fine. The configure script runs fine as well but the C++ libraries are not enabled even if I explicitly request them.
Once I enable devtoolset-3, here is how I run configure: scl enable devtoolset-3 bash ./configure --prefix=/opt/apache-thrift --enable-shared=no --enable-tests=no --enable-tutorial=no --with-qt4=no --with-c_glib=no --with-java=no --with-python=no --with-haskell=no --with-cpp=yes --enable-static=yes --with-libevent=no But the final output is: thrift 0.12.0 Building C (GLib) Library .... : no Building C# (Mono) Library ... : no Building C++ Library ......... : no Building Common Lisp Library.. : no Building D Library ........... : no Building Dart Library ........ : no Building dotnetcore Library .. : no Building Erlang Library ...... : no Building Go Library .......... : no Building Haskell Library ..... : no Building Haxe Library ........ : no Building Java Library ........ : no Building Lua Library ......... : no Building NodeJS Library ...... : no Building Perl Library ........ : no Building PHP Library ......... : no Building Plugin Support ...... : no Building Python Library ...... : no Building Py3 Library ......... : yes Building Ruby Library ........ : no Building Rust Library ........ : no I went through config.log but I could not find anything wrong with the C++-related messages. What could I be missing? Thank you! Rares