Re: Qt-4.1 and FC4 with make
Quote:
Originally Posted by probine
1. I do not want to use "gmake". I would like to compile with "make".
You are using Linux => Linux uses GNU environment => gmake stands for GNU make => make is just an alias (read symlink) to gmake (or vice versa).
Quote:
Originally Posted by probine
2. I have "gcc" installed in my computer. What is the deal with g++ ?
g++ is GNU C++ compiler. You should have installed both gcc-something.rpm and g++-something.rpm. I don't actually know the right packages name for FC
Re: Qt-4.1 and FC4 with make
Quote:
Originally Posted by probine
1. I do not want to use "gmake". I would like to compile with "make".
2. I have "gcc" installed in my computer. What is the deal with g++ ?
1. You already do don't worry.
2. The deal is that you have to install it because you won't be able to compile any c++ programs.
Re: Qt-4.1 and FC4 with make
You will need to install gcc-c++:
Quote:
yum -y install gcc-c++
I had this same problem with a CentOS5 installation and fund a fix for it. I thought I would post my fix for the issue even though this thread is quite old.