When i import a (big) module into a Main module in one of the following ways:
import Mymodule
import qualified Mymodule as M
import Mymodule (MyDatatype)
the compiled binary grows the same huge amount compared to when i don’t import that module. This happens regardless of whether i use anything inside that module or not in the Main module. Shouldn’t the compiler (i am using GHC on Debian Testing) only add into the binary what is needed to run it?
In my specific case i have a huge Map in Mymodule which i don’t use in the Main module. Selectively importing what i really need, did not change the growth of the compiled binary.
As far as GHC is concerned, import lists are only there for readability and avoiding name clashes; they don’t affect what’s linked in at all.
Also, even if you did only import a few functions from a library, they might still depend on the bulk of the library internally, so you shouldn’t necessarily expect to see a size decrease from only using some of an available interface in general.
By default, GHC links in entire libraries, rather than only the pieces you use; you could avoid this by building libraries with the
-split-objsoption to GHC (or putsplit-objs: Truein your cabal-install configuration file (~/.cabal/configon Unix)), but it slows down compilation, and is seemingly not recommended by the GHC developers:This will omit unused parts of libraries you use, regardless of what you import.
You might also be interested in using shared Haskell libraries.