Why is a statically-linked "hello world" program so big (over 650 KB)? – Debian
Consider the following program: #include <stdio.h> int main(void) { printf("hello worldn"); return 0; } If I build it with GCC, optimizing for size, and with static linking, and then strip it for further size minimization (maybe): $ gcc -Os -static…