fedora13 编译安装 mysql exec: g++: not found

在fedora13下编译安装mysql时出现 exec: g++: not found,即没有安装gcc-c++

解决方法 :yum install gcc-c++

安装完后再make,出现error: redeclaration of C++ built-in type ‘bool’
是因为gcc-c++是在configure之后安装的,此时只需重新configure后再编译make即可。