My source code can be found here: https://github.com/tm1rbrt/S3DM
When I compile it with ghc test.hs the executable comes out at over 7 meg! What, if anything, can I do to reduce this?
|
My source code can be found here: https://github.com/tm1rbrt/S3DM When I compile it with |
||||
|
Let's see what's going on, try
You see from the Aside: since this is a graphics-intensive app, I'd definitely compile with There's two things you can do. Stripping symbols An easy solution: strip the binary:
Strip discards symbols from the object file. They are generally only needed for debugging. Dynamically linked Haskell libraries More recently, GHC has gained support for dynamic linking of both C and Haskell libraries. Most distros now distribute a version of GHC built to support dynamic linking of Haskell libraries. Shared Haskell libraries may be shared amongst many Haskell programs, without copying them into the executable each time. At the time of writing Linux and Windows are supported. To allow the Haskell libraries to be dynamically linked, you need to compile them with
Also, any libraries you want to be shared should be built with
And you'll end up with a much smaller executable, that has both C and Haskell dependencies dynamically resolved.
And, voilĂ !
which you can strip to make even smaller:
An eensy weensy executable, built up from many dynamically linked C and Haskell pieces:
One final point: even on systems with static linking only, you can use -split-objs, to get one .o file per top level function, which can further reduce the size of statically linked libraries. It needs GHC to be built with -split-objs on, which some systems forget to do. |
|||||||||||||||||||||
|
|
Haskell uses static linking by default. This is, the whole bindings to OpenGL are copied into your program. As they are quite big, your program gets unnecessarily inflated. You can work around this by using dynamic linking, although it isn't enabled by default. |
|||||||
|
stripon the binary to remove the symbol table. – larsmans May 24 '11 at 19:20strip test. This command removes some debug information from the program and makes it smaller. – FUZxxl May 24 '11 at 19:20data M3 = M3 !V3 !V3 !V3anddata V3 = V3 !Float !Float !Float. Compile withghc -O2 -funbox-strict-fields. – Don Stewart May 24 '11 at 19:24