CC=''
tells me, you no compiler is set. Do you have gcc installed?
Try
which gcc
On debian you probably need to install a build environment with
apt-get install build-essential
or even better
apt-get build-dep you-package-name
.
CC=''
tells me, you no compiler is set. Do you have gcc installed?
Try
which gcc
On debian you probably need to install a build environment with
apt-get install build-essential
or even better
apt-get build-dep you-package-name
.