Hi,
The python-RPi.GPIO.tcz package installed through TCE didn't seem to work with Python 3.5 so I decided to install the package through PIP instead.
The PIP install always fails with gcc complaining that:
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -O3 -pipe -march=armv6zk -mtune=arm1176jzf-s -mfpu=vfp -fPIC -I/usr/local/include/python3.5m -c source/py_gpio.c -o build/temp.linux-armv7l-3.5/source/py_gpio.o
gcc: error trying to exec 'as': execvp: No such file or directory
In file included from /tmp/tcloop/gcc/usr/lib/gcc/armv7l-unknown-linux-gnueabihf/6.1.0/include-fixed/limits.h:168:0,
from /tmp/tcloop/gcc/usr/lib/gcc/armv7l-unknown-linux-gnueabihf/6.1.0/include-fixed/syslimits.h:7,
from /tmp/tcloop/gcc/usr/lib/gcc/armv7l-unknown-linux-gnueabihf/6.1.0/include-fixed/limits.h:34,
from /usr/local/include/python3.5m/Python.h:11,
from source/py_gpio.c:23:
/usr/lib/gcc/armv7l-unknown-linux-gnueabihf/6.1.0/include-fixed/limits.h:168:61: fatal error: limits.h: No such file or directory
#include_next <limits.h> /* recurse down to the real one */
^
compilation terminated.
I assume I'm missing something called AS but searching for a combination of GCC and AS on Google is like searching for a single Cheerios in a box full of Froot Loops...
Any help appreciated!