mikak 2 Posted February 3, 2021 My Delphi 10.3.1 compiles my quite large application from ide in about 20-25 sec. If I check use MSbuild to compile it takes over 2 minutues. I have Installed fastdcc 6.4.4 and IDE Fix Pack 6.4.4 I there anything I could do - we have over 10 applications so building them from command line takes of course a long time... Share this post Link to post
Anders Melander 1783 Posted February 3, 2021 18 minutes ago, mikak said: I there anything I could do - we have over 10 applications so building them from command line takes of course a long time... Build them in parallel. Share this post Link to post
mikak 2 Posted February 3, 2021 I have thought that, but they use common units - I would think that if other is trying to access dcu while other one is generating that, it would be a problem Share this post Link to post
Uwe Raabe 2057 Posted February 3, 2021 1 hour ago, mikak said: I have Installed fastdcc 6.4.4 and IDE Fix Pack 6.4.4 Did you rename the fast compilers to replace the original ones? 1 Share this post Link to post
Anders Melander 1783 Posted February 3, 2021 53 minutes ago, mikak said: I would think that if other is trying to access dcu while other one is generating that, it would be a problem So don't use shared dcu output folders. You shouldn't be doing that anyway. 2 Share this post Link to post
mikak 2 Posted February 3, 2021 28 minutes ago, Anders Melander said: So don't use shared dcu output folders. You shouldn't be doing that anyway. okey.. of cource that might do it .. have you been using paraller compilation? Share this post Link to post
mikak 2 Posted February 3, 2021 34 minutes ago, Uwe Raabe said: Did you rename the fast compilers to replace the original ones? yes. I did and at start of compilation it says Compiler Speed Pack 6.4.2 - Compiler patches applied so it's 6.4.2 not 6.4.4 as I wrote but change log between isn't so huge. Share this post Link to post
Anders Melander 1783 Posted February 3, 2021 2 minutes ago, mikak said: have you been using paraller compilation? My build server runs all builds in parallel. I don't do it locally as I don't need to build more than one project at a time there. 1 Share this post Link to post