From 12718d149717b5e209081dcc3ac5dd33f62e8c6d Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 2 Dec 2002 10:44:10 +0000 Subject: [PATCH] [project @ 2002-12-02 10:44:10 by simonmar] Add a FAQ item about long link times. --- ghc/docs/users_guide/faq.sgml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/ghc/docs/users_guide/faq.sgml b/ghc/docs/users_guide/faq.sgml index 51f6d5a..0c274d7 100644 --- a/ghc/docs/users_guide/faq.sgml +++ b/ghc/docs/users_guide/faq.sgml @@ -305,6 +305,24 @@ details. + + Why does linking take so long? + + Linking a small program should take no more than a few + seconds. Larger programs can take longer, but even linking + GHC itself only takes 3-4 seconds on our development + machines. + + Long link times have been attributed to using Sun's + linker on Solaris, as compared to GNU ld + which appears to be much faster. So if you're on a Sun box, + try switching to GNU ld. This + article from the mailing list has more + information. + + + -- 1.7.10.4