From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,206547e68a60b0e7,start X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!f14g2000cwb.googlegroups.com!not-for-mail From: i-google-iasuhdkajsh@rf.risimo.net Newsgroups: comp.lang.ada Subject: How to cache output of the compiler aka ccache Date: 17 Mar 2005 10:54:01 -0800 Organization: http://groups.google.com Message-ID: <1111085641.211767.56950@f14g2000cwb.googlegroups.com> NNTP-Posting-Host: 84.137.172.120 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1111085646 1613 127.0.0.1 (17 Mar 2005 18:54:06 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 17 Mar 2005 18:54:06 +0000 (UTC) User-Agent: G2/0.2 Complaints-To: groups-abuse@google.com Injection-Info: f14g2000cwb.googlegroups.com; posting-host=84.137.172.120; posting-account=dUCd-Q0AAADA2fssbOSH1UbdoyzVr0H1 Xref: g2news1.google.com comp.lang.ada:9554 Date: 2005-03-17T10:54:01-08:00 List-Id: Hi I have a 1mio LOC project and it takes multiple hours to build and rebuild. The C/C++ world has a nice tools (ccache is well known here) which cache the output of the compiler. This especially speeds up the time for a "make clean;make". Is there such a thing for Ada in general and gcc's gnat specially? Any other way to speed up the compilation? Thomas