caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* No unused code linking?
@ 2005-11-09 11:11 Dmitry Bely
  2005-11-09 11:19 ` [Caml-list] " malc
  0 siblings, 1 reply; 6+ messages in thread
From: Dmitry Bely @ 2005-11-09 11:11 UTC (permalink / raw)
  To: caml-list

I am thinking of reducing the size of ocamlopt-generated executables that
easily grows to 1Mb and above. The problem as I see it is that any module is
linked as a single whole (as all its functions are placed into the single
object file), no matter what is actually used. So almost all
stdlib/otherlibs become quickly linked into even not very complex project.

In C world there is a solution that lets the linker to do its job smartly
for monolitic object files: place each function into the separate section
(gcc's "-ffunction-sections" or msvc's "-Gy" options) and then ask linker
to eliminate unused sections during the link stage. Can anything similar be
done with Ocamlopt compiler?

Of course, placing each function into the separate section is not a problem -
modifications of the code generator would be minimal. The real problem are
the frame tables - the single table references all functions in the
module. Maybe they can be split and linked separately? What Ocaml
developers think of that?

- Dmitry Bely


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-11-11 15:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-11-09 11:11 No unused code linking? Dmitry Bely
2005-11-09 11:19 ` [Caml-list] " malc
2005-11-09 11:49   ` Dmitry Bely
2005-11-09 12:44     ` malc
2005-11-11 13:41       ` Florian Weimer
2005-11-11 15:29       ` Dmitry Bely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).