I'm trying to install a C library on a Debian machine. The instructions state that I first need to issue the command "./configure". This is what happens when I do:
Code:
halfpower@computer:~/libsndfile/libsndfile-1.0.11$ ./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 gawk... gawk
checking whether make sets $(MAKE)... no
checking for gcc... no
checking for cc... no
checking for cc... no
checking for cl... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
halfpower@computer:~/libsndfile/libsndfile-1.0.11$
Note that my GCC is actually named gcc-3.3. DO I need to edit $PATH? If so how do I go about doing that?