I recently discovered the Tiny C Compiler. For the project that I'm currently working on, performance is not a real issue, but file size is, making TCC ideal. I'm using Autotools as a build manager, and I figured that using TCC would be as simple as ./configure CC=tcc
.
However, this returns checking whether the C compiler works... no
. In config.log, it says configure: exit 77
.
Despite all of this, setting CC=clang
works fine. Is there any way to get Autotools to use TCC?