LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   trouble with tar files (https://www.linuxquestions.org/questions/linux-software-2/trouble-with-tar-files-308812/)

moborichard 04-01-2005 08:45 PM

trouble with tar files
 
I've downloaded some tar files (including adobe acrobat) and after I extract them, I get the error message "configure: error: no acceptable C compiler found in $PATH"

I'm new to this. The system otherwise works fine. any clues. thanks.

mjmwired 04-01-2005 09:08 PM

Go to you Add/Remove program in Fedora and select to add development tools (which should include things like 'make' and 'gcc'). These come included on the Fedora cd's.

reddazz 04-01-2005 09:18 PM

An alternative is to use yum e.g.
Code:

#yum install gcc

bigrigdriver 04-01-2005 09:26 PM

Yet another alternative:
Open a terminal window, and enter the command: which gcc.
That should return something like: /usr/bin/gcc, the location of the gcc executable.
Then, enter this command in the term window: 'export PATH=$PATH:/usr/bin/gcc' (without quotes) to add gcc to your path.
The export command as given appends the path to gcc to the path you already have (given as $PATH).
Then, try installing the tarball again.

kira 04-01-2005 10:35 PM

just add your gcc executable files to $PATH,
showd above.


All times are GMT -5. The time now is 09:33 PM.