Especially line 35 drove me insane: You have to install development tools first. That made me think I need to install more *-dev stuff.
Took me some time to find out that there was a problem with gcc! Turns out that gcc version 4.8.3 (Debian 4.8.3-13) (gcc -v) wasn’t able to build the package for me. So I installed gcc version 4.9.1 (Debian 4.9.1-19) and everything worked like a charm. :)
You not only need to install gcc-4.9, but gcc-4.9 must be the default, eg. you also need to install package gcc in version 4.9.
Thx for posting this, i got bitten by the same thing.
2 comments
You not only need to install gcc-4.9, but gcc-4.9 must be the default, eg. you also need to install package gcc in version 4.9. Thx for posting this, i got bitten by the same thing.
Thank you for this page. Helped resolve my issue.