How to speed up c++ linking time

后端 未结 4 712
自闭症患者
自闭症患者 2021-02-04 05:17

Is there any way, to optimalize linking time in MS Visual studio C++ (2005) ? We\'re using Xoreax Incredibuild for compilation speed up, but nothing for link.

Currently

4条回答
  •  南笙
    南笙 (楼主)
    2021-02-04 05:54

    There are some general setting suggestions on Improving link time with IncrediBuild

    You can also skip linking of static libs where you won't distribute them using IncrediLink

    We found that addition of a signing post build step would stop IncrediBuild from working on following projects, adding a comment to post build was supposed to help

    rem IncrediBuild_AllowOverlap
    

    See IncrediBuild_AllowOverlap doc

提交回复
热议问题