▲ 1 r/Compilers
How can I improve my CFLAGS and LDFLAGS to have multicore parallelism of binaries optimized for smallest size even at the expense of singlecore performance?
CC=“clang”
CFLAGS=“-Oz -march=native -Wno-error -static -fPIE -flto=full -pthreads”
LDFLAGS=“-fuse-ld=lld”
Any CC, CFLAGS, LD, LDFLAGS or libraries that would increase multicore parallelism of binaries oprimized for smallest size even at the expense of multicore performance?
u/EyeCivil1920 — 4 days ago