From: John M. <ato...@gm...> - 2011-04-06 02:37:29
|
On Tue, Apr 5, 2011 at 2:31 PM, Borja Ferrer <bor...@gm...> wrote: > PS: John do you get clang rebuilt each time you recompile LLVM, if that's > the case do you know a way to stop this because linking it takes like 40secs > here. Im using ccache as mentioned in some doc file. > No, if I remember correctly, mostly only the clang source files that have changed get compiled. I think certain LLVM library's cause parts of clang to be rebuild though. I remember working on some parts of LLVM would seem to cause the clang compilations to take a long time compared to when I would modify other files in LLVM. On Linux using *configure *I used to rename * tools/clang* which keeps the LLVM build system from trying to compile clang also. With CMake+VS you can disable compilation of each project separately. |