Skip to main content
1 of 2
user avatar
user avatar
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

.

user55518