g++ on RHEL 5
Problem
g++ is not installed on your Redhat EL 5 at default.
Solution
Try;
% yum install gcc-c++ compat-gcc-* % which g++
If you still not find g++, maybe g++ is saved as g++32 in /usr/bin. If so, create a symbolic link to g++32.
% ln -s /usr/bin/g++32 /usr/bin/g++
Tags: linux