Compilation time is 700-800ms. Run time is about half as tcc, compiled with -O3 (45-55ms)
Running C code at 50% max speed is OK for me when running debug builds.
Clang being slower to compile is not an issue because I can use tcc. Unfortunately I can't use all those nice C++ features with tcc.
I tried to replace the quicksort with a radix sort, and the difference is much closer on this better optimized code (15ms vs 17ms).
Compilation time is 700-800ms. Run time is about half as tcc, compiled with -O3 (45-55ms)