hi
i think you mis understood my problem. i am not seeting path.
when i just execute export $PATH to display value of PATH variable i am getting
bash: export: `/usr/local/bin:/usr/bin:/
Also i already set path for gcc
when i invove gcc it ouputs gcc: no input files which conforms gcc working but when i ./configure some thins getting
checking for gcc... gcc
checking for C compiler default output file name...
configure: error: C compiler cannot create executables
See `config.log' for more details.
Main Topics
Browse All Topics





by: arnoldPosted on 2008-03-21 at 13:45:22ID: 21183040
When using export command, you should not include the $.
PATH=$PATH:/usr/local/bin:
export PATH
the addition will look for gcc in /usr/local/bin and /opt/bin.
If your gcc is in a different location, you can include that in the PATH.