When I compile my Snap webapp (to deploy it to production server), it comes out to 19MB! What gives? Is this normal? Am I doing something wrong?
My site only has 3 static pages, basically snap's init project.
|
When I compile my Snap webapp (to deploy it to production server), it comes out to 19MB! What gives? Is this normal? Am I doing something wrong? My site only has 3 static pages, basically snap's init project. |
||||
| show 3 more comments |
|
I guess Snap pulls a lot of dependencies. One solution to this problem, which unfortunately affects the (initial) compilation time is to install libraries your project depend on with --split-objs option. That will generate a ton of different object but will make the final executable a lot smaller, like 2-4 times smaller.
If you already have the libraries installed you will need to remove them first, install a fresh GHC or use sandbox with it's own package set. You should also use Additionally you may consider using Using shared libraries ( |
|||||||||
|
scpconnection to my EC2 instance every time I want to make a tiny change... – drozzy Jul 3 '12 at 5:06xzbefore the transfer and decompress it afterwards... or in one pass withxz -c9 a.out | ssh -v ec2-host.amazon.com "xz -cd > a.out". That reduces a simple hello world app from 16MB to 1.6MB on my box. – Nathan Howell Jul 3 '12 at 7:55