I\'m currently developing some web application written in Haskell. All Haskell libraries are statically linked; although this "bloats" the executable, it not so much o
dcoutts posted this as a reddit comment:
You can do exactly the same with ghc.
gcc -c prog.c -o prog.o gcc prog.o libfoo.a -o prog
and lo, with ghc it's the same...
ghc -c prog.hs -o prog.o ghc prog.o libfoo.a -o prog