Hi,
I am Installing Mondo Tool in Red Hat Linux 4.
[root@red mondo-2.2.9]# ./config
config.guess config.sub configure
[root@red mondo-2.2.9]# ./config
config.guess config.sub configure
[root@red mondo-2.2.9]# ./config
config.guess config.sub configure
[root@red mondo-2.2.9]# ./configure
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking for style of include used by make... GNU
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/software/mondo-2.2.9':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
I get The configure: error: no acceptable C compiler
Please help.
Thanks Regards
Rohit
Note: If you are the author of this question and wish to assign points to any of the answers, please login first.For more information on assigning points ,click
here
I doubt that "libgcc" is the whole compiler kit. I'd look for something like "gcc-<version>.something".
If a command like "gcc -V" doesn't work for you interactively, then either you don't have the compiler installed, or else your PATH misses it. Either way, a "configure" script may be expected to fail.
> echo $PATH
Still wondering. (But if "libgcc" is as close as you get to "gcc", then I'd worry about the PATH last, after you've installed the compiler.)
What Steven is telling you is spot on. You need to install gcc. You may need other dependencies installed as well, which "configure" will tell you as well. It clearly says no gcc, no cc, and no cl.exe.
On my RHEL4 system, this is what I see when I run the same rpm query: -- $ rpm -qa |grep cc libgcc-3.4.6-11 gcc-3.4.6-11 --
Please listen to Steven, or lacking that, provide the information he requested (the contents of $PATH.) I also don't think it's just a PATH issue, because configure found binaries in both /bin and /usr/bin, but if you're going to say that isn't the issue, take the few moments to run the command and prove it.
>>>configure: error: no acceptable C compiler found in $PATH libgcc is a shared support library for running gcc. You don;t have gcc installed properly. Install gcc either from the media or download it. Take referrence in the below output On My system: